docker-compose.yml 273 B

123456789101112131415161718
  1. version: '2'
  2. services:
  3. web:
  4. restart: always
  5. build:
  6. context: ./
  7. ports:
  8. - "8001:8001"
  9. command: /usr/local/bin/gunicorn -w 2 -b :8001 server:app
  10. nginx:
  11. restart: always
  12. build: ./nginx/
  13. ports:
  14. - "80:80"
  15. links:
  16. - web