🧱(docker) setup

Setup Docker files with Node to run workflows.
This commit is contained in:
Nathan Vasse
2022-12-01 12:06:41 +01:00
committed by NathanVss
parent 62c003780b
commit 3c74bf5249

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
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