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