Files
templates/blueprints/cup/docker-compose.yml
Jainil Prajapati 974d42542f Add initial template configuration for cup service (#355)
- Created a new TOML template for the cup service.
- Defined main domain variable and service configuration.
- Specified service name, port, and host for the cup service.
- Configured environment variables and mounted Docker socket.
2025-09-13 19:30:12 -06:00

12 lines
207 B
YAML

version: "3.8"
services:
cup:
image: ghcr.io/sergi0g/cup:latest
restart: unless-stopped
command: serve
ports:
- "8000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock