Advertisement
Guest User

Untitled

a guest
Aug 26th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. services:
  2. django:
  3. command: /start
  4. links:
  5. - postgres
  6. env_file:
  7. - ./.envs/.production/.django
  8. - ./.envs/.production/.postgres
  9. build:
  10. context: .
  11. dockerfile: ./compose/production/django/Dockerfile
  12. image: lionelv/cookiecutter_aws_production_django
  13. postgres:
  14. env_file:
  15. - ./.envs/.production/.postgres
  16. build:
  17. context: .
  18. dockerfile: ./compose/production/postgres/Dockerfile
  19. image: lionelv/cookiecutter_aws_production_postgres
  20. traefik:
  21. links:
  22. - django
  23. build:
  24. context: .
  25. dockerfile: ./compose/production/traefik/Dockerfile
  26. image: lionelv/cookiecutter_aws_production_traefik
  27. ports:
  28. - 0.0.0.0:80:80
  29. version: '3'
  30. volumes:
  31. production_postgres_data: {}
  32. production_postgres_data_backups: {}
  33. production_traefik: {}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement