CoompanionApp/docker-compose.yml

18 lines
342 B
YAML
Raw Permalink Normal View History

2026-02-03 16:36:50 +01:00
services:
app:
image: oven/bun:latest
working_dir: /app
2026-02-03 16:39:32 +01:00
command: sh -lc "bun install && bun run index.ts"
2026-02-03 16:36:50 +01:00
ports:
- "${PORT:-3000}:${PORT:-3000}"
environment:
- PORT=${PORT:-3000}
env_file:
- .env
volumes:
- ./:/app
- bun_node_modules:/app/node_modules
volumes:
bun_node_modules: