forgeplus-react/docker/docker-compose.yml

13 lines
242 B
YAML

version: '3.8'
services:
forgeplus-react:
image: node:12-alpine
volumes:
- ../../forgeplus-react:/app
working_dir: /app
ports:
- "3007:3007"
- "3000:3000"
command: sh -c "npm install && npm run start"