25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

25 satır
360 B

  1. db:
  2. restart: always
  3. image: postgres:9.4
  4. volumes:
  5. - postgres_db:/var/lib/postgresql/data
  6. django:
  7. restart: always
  8. build: .
  9. expose:
  10. - "8000"
  11. volumes:
  12. - django_www:/usr/src/app/www
  13. links:
  14. - db
  15. command: ./start.sh
  16. nginx:
  17. restart: always
  18. build: ./nginx/
  19. ports:
  20. - "80:80"
  21. volumes_from:
  22. - django
  23. links:
  24. - django