Added proper CI
All checks were successful
OpenClimb Docker Deploy / build-and-push (pull_request) Successful in 2m3s

This commit is contained in:
2025-09-28 23:29:44 -06:00
parent 6e490d1598
commit f7f1fba9aa
11 changed files with 348 additions and 3 deletions

12
sync/docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
openclimb-sync:
image: ${IMAGE}
ports:
- "8080:8080"
environment:
- AUTH_TOKEN=${AUTH_TOKEN:-your-secret-token-here}
- DATA_FILE=/data/climb_data.json
- IMAGES_DIR=/data/images
volumes:
- ./data:/data
restart: unless-stopped