From 9b6d845809bddf68f196b5d6286e0ba740595450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Gro=C3=9F?= Date: Wed, 14 Jun 2023 10:39:53 +0200 Subject: [PATCH] Set working_dir and mount to /app --- docker-compose.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2e9c1fe..a531f11 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,4 +4,7 @@ services: monitor: image: node:20-alpine command: npm run monitor - restart: unless-stopped \ No newline at end of file + working_dir: /app + restart: unless-stopped + volumes: + - ./:/app \ No newline at end of file