docker-compose.yml 205 B

1234567891011121314
  1. web:
  2. restart: always
  3. build: ./
  4. expose:
  5. - "8000"
  6. command: /usr/local/bin/gunicorn -w 2 -b :8000 app:app
  7. nginx:
  8. restart: always
  9. build: ./nginx/
  10. ports:
  11. - "80:80"
  12. links:
  13. - web:web