Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
version: '3' services: backend: build: ./app/backend volumes: - '.:/app' stdin_open: true frontend: build: ./app/frontend volumes: - '.:/app' - '/app/node_modules' ports: #expose our IP - "3000:3000" depends_on: - backend stdin_open: true