Files
cunningham/docker-compose.yml
Nathan Vasse 3c74bf5249 🧱(docker) setup
Setup Docker files with Node to run workflows.
2022-12-07 17:07:18 +01:00

13 lines
209 B
YAML

version: "3.5"
services:
node:
image: node:16.15
working_dir: /app
user: "${DOCKER_USER:-1000}"
ports:
- "3200:3200"
- "3201:3201"
- "6006:6006"
volumes:
- .:/app