Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

25 righe
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