Skip to content

Instantly share code, notes, and snippets.

@hossainemruz
Created November 9, 2018 09:29
Show Gist options
  • Save hossainemruz/53303a48f1906610cdb8c7257cc08f53 to your computer and use it in GitHub Desktop.
Save hossainemruz/53303a48f1906610cdb8c7257cc08f53 to your computer and use it in GitHub Desktop.
version: "2"
services:
universe:
build: .
working_dir: /usr/src
environment:
- NODE_ENV=default
- PORT=3000
volumes:
- /usr/src
ports:
- "3000:3000"
- "8000:8000"
links:
- redis
- mysql
depends_on:
- mysql
- redis
redis:
image: redis
volumes:
- /data/redis:/data
mysql:
image: mysql:5.7
environment:
MYSQL_ROOT_PASSWORD: "root"
MYSQL_DATABASE: "database_name"
MYSQL_USER: "username"
MYSQL_PASSWORD: "password"
volumes:
- /data/mysql:/var/lib/mysql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment