version: '2' services: web: restart: always build: context: ./ ports: - "8001:8001" command: /usr/local/bin/gunicorn -w 2 -b :8001 server:app nginx: restart: always build: ./nginx/ ports: - "80:80" links: - web