2026-02-27 06:56:34 +00:00
|
|
|
services:
|
|
|
|
|
forge:
|
2026-02-27 07:06:22 +00:00
|
|
|
image: node:22-slim
|
2026-02-27 06:56:34 +00:00
|
|
|
container_name: forge-console
|
2026-02-27 07:06:22 +00:00
|
|
|
working_dir: /app
|
|
|
|
|
command: >
|
|
|
|
|
sh -c "cd web && npm install --production --silent && node server.js"
|
2026-02-27 06:56:34 +00:00
|
|
|
ports:
|
|
|
|
|
- "3000:3000"
|
|
|
|
|
env_file:
|
|
|
|
|
- .env
|
|
|
|
|
volumes:
|
2026-02-27 07:06:22 +00:00
|
|
|
- .:/app
|
2026-02-27 06:56:34 +00:00
|
|
|
restart: unless-stopped
|