Advertisement
Guest User

Untitled

a guest
Nov 10th, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. node:
  2. build: ./node
  3. links:
  4. - "redis:redis"
  5. - "mariadb:mariadb"
  6. redis:
  7. image: redis
  8. mariadb:
  9. image: "mariadb:latest"
  10. environment:
  11. MYSQL_DATABASE: dataowl
  12. MYSQL_USER: IamOwl
  13. MYSQL_PASSWORD: MaGyf2TNHyvuP4UY
  14. volumes:
  15. - "./database:/var/lib/mysql"
  16. nginx:
  17. image: "nginx:stable"
  18. volumes:
  19. - "./web:/usr/share/nginx/deploy:ro"
  20. - "./nginx/nginx.conf:/etc/nginx/nginx.conf"
  21. - "./nginx/ssl:/etc/ssl"
  22. links:
  23. - "node:node"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement