version: '2' services: web: build: context: ./web/ ports: - "8001:8001" nginx: restart: always build: ./nginx/ ports: - "80:80" links: - web