mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
- 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.
12 lines
207 B
YAML
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
|