18 lines
312 B
YAML
18 lines
312 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
mybun:
|
|
image: oven/bun
|
|
volumes:
|
|
- .:/workspace:cached
|
|
working_dir: /workspace
|
|
ports:
|
|
- "3000:3000"
|
|
command: ["sleep", "infinity"] # Keep the container running
|
|
|
|
redis:
|
|
image: redis:latest
|
|
ports:
|
|
- "6379:6379"
|
|
restart: unless-stopped
|