Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4. app:
  5. build: app
  6. command: python manage.py runserver 0:8000
  7. volumes:
  8. - ./app:/usr/src/app
  9. environment:
  10. - DEBUG=true
  11. ports:
  12. - 8003:8000
  13. links:
  14. - dashboard_database
  15.  
  16. dashboard_database:
  17. image: postgres
  18. environment:
  19. - POSTGRES_USER=dash
  20. - POSTGRES_PASSWORD=dash
  21.  
  22. gns_db:
  23. image: tommi2day/mysql4
  24. environment:
  25. - MYSQL_ROOT_PASSWORD=ispmbr01
  26. volumes:
  27. - ./gns_db:/db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement