Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. version: '3.7'
  2.  
  3. services:
  4. web:
  5. build: ./mtw_challenge
  6. command: python manage.py runserver 0.0.0.0:8000
  7. volumes:
  8. - ./mtw_challenge/:/app
  9. ports:
  10. - 8000:8000
  11. depends_on:
  12. - db
  13. db:
  14. image: postgres:11.5-alpine
  15. volumes:
  16. - postgres_data:/var/lib/postgresql/data
  17.  
  18. volumes:
  19. postgres_data:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement