All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1m22s
13 lines
237 B
YAML
13 lines
237 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
cup:
|
|
container_name: cup
|
|
image: ghcr.io/sergi0g/cup
|
|
command: serve -p 9000
|
|
ports:
|
|
- "1024:9000"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: unless-stopped
|