dev_gitea/.devcontainer_archive/docker-compose.yml
2024-12-15 18:02:25 +01:00

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