Docker compose fix

This commit is contained in:
Julien Valverdé
2024-07-18 23:50:39 +02:00
parent e154d4a88e
commit 7729bff903

View File

@@ -29,7 +29,8 @@ services:
env_file: .env
environment:
<<: *env-base
entrypoint: ["bun", "dev"]
NODE_ENV: development
entrypoint: ["bun", "--watch", "src/index.ts"]
depends_on:
- reverse-proxy
@@ -42,7 +43,7 @@ services:
working_dir: /app/packages/webui
environment:
<<: *env-base
entrypoint: ["bun", "dev"]
entrypoint: ["bun", "vite"]
stop_signal: SIGKILL
depends_on:
- reverse-proxy