mirror of
https://github.com/dominikhoebert/docker-projects.git
synced 2025-06-27 16:57:05 +00:00
24 lines
389 B
YAML
24 lines
389 B
YAML
# https://github.com/sergi0g/cup
|
|
|
|
#
|
|
|
|
name: cup
|
|
|
|
services:
|
|
cup:
|
|
image: ghcr.io/sergi0g/cup:latest
|
|
container_name: cup # Optional
|
|
restart: unless-stopped
|
|
command: -c /config/cup.json serve
|
|
ports:
|
|
- 8000:8000
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./config:/config
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|