version: "3.7" services: react: image: yutsuo/mern-todo-app container_name: mern-todo-app build: context: . args: - HTTP_PROXY=http://192.168.128.1:3128 - HTTPS_PROXY=http://192.168.128.1:3128 - http_proxy=http://192.168.128.1:3128 - https_proxy=http://192.168.128.1:3128 ports: - "3000:3000" volumes: - .:/app - /app/node_modules environment: - PORT=3000 - HTTP_PROXY=http://192.168.128.1:3128 - HTTPS_PROXY=http://192.168.128.1:3128 - http_proxy=http://192.168.128.1:3128 - https_proxy=http://192.168.128.1:3128 - NODE_ENV=development networks: default: ipam: driver: default config: - subnet: 172.17.0.0/24