From 5544d1ae9b495c146f2aef7e6a19d8c589d3cc86 Mon Sep 17 00:00:00 2001 From: ryuupendragon Date: Thu, 17 Jul 2025 12:23:41 +0530 Subject: [PATCH] Add gickup --- .archived/gickup/docker-compose.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .archived/gickup/docker-compose.yml diff --git a/.archived/gickup/docker-compose.yml b/.archived/gickup/docker-compose.yml new file mode 100644 index 0000000..a4aa923 --- /dev/null +++ b/.archived/gickup/docker-compose.yml @@ -0,0 +1,18 @@ +# Gickup service configuration +services: + gickup: + # Basic container configuration + container_name: gickup + image: ghcr.io/cooperspencer/gickup:0.10.38 + restart: unless-stopped + + # Command to run when the container starts + command: ["/gickup/conf.yml"] # Points to the configuration file inside the container + + # Environment variables + environment: + - TZ=${TZ} # Timezone + + # Persistent storage configuration + volumes: + - ${APPDATA_PATH}/gickup/conf.yml:/gickup/conf.yml