Archive cup

This commit is contained in:
2025-08-09 21:29:52 +05:30
parent 7de4662410
commit 9e738e7517

View File

@@ -0,0 +1,29 @@
services:
cup_socket_proxy:
container_name: cup_socket_proxy
image: ghcr.io/11notes/socket-proxy:2.1.3
restart: unless-stopped
read_only: true
user: ${PUID}:${PGID}
environment:
- TZ=${TZ}
volumes:
- /run/docker.sock:/run/docker.sock:ro
- ${APPDATA_PATH}/cup/socket-proxy:/run/proxy
cup:
container_name: cup
image: ghcr.io/sergi0g/cup:v3.4.0
restart: unless-stopped
depends_on:
cup_socket_proxy:
condition: service_healthy
command: serve
environment:
- TZ=${TZ}
- CUP_REFRESH_INTERVAL=${CUP_REFRESH_INTERVAL}
- CUP_THEME=${CUP_THEME}
volumes:
- ${APPDATA_PATH}/cup/socket-proxy:/var/run
ports:
- ${PORT}:8000