Skip to content

Instantly share code, notes, and snippets.

@vartana
Created November 10, 2016 07:04
Show Gist options
  • Save vartana/a4bbfe4508faa424f5d752c843b03d6d to your computer and use it in GitHub Desktop.
Save vartana/a4bbfe4508faa424f5d752c843b03d6d to your computer and use it in GitHub Desktop.
node:
build: ./node
links:
- "redis:redis"
- "mariadb:mariadb"
redis:
image: redis
mariadb:
image: "mariadb:latest"
environment:
MYSQL_DATABASE: dataowl
MYSQL_USER: IamOwl
MYSQL_PASSWORD: MaGyf2TNHyvuP4UY
volumes:
- "./database:/var/lib/mysql"
nginx:
image: "nginx:stable"
volumes:
- "./web:/usr/share/nginx/deploy:ro"
- "./nginx/nginx.conf:/etc/nginx/nginx.conf"
- "./nginx/ssl:/etc/ssl"
links:
- "node:node"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment