3 Commits
Author SHA1 Message Date
tobbbs 5657014293 Update compose.yaml 2026-06-15 12:01:37 +02:00
tobbbs 08e6f60e22 Update compose.yaml 2026-06-09 13:20:03 +02:00
tobbbs 176881da9d Add compose.yaml 2026-06-02 15:37:13 +02:00
2 changed files with 18 additions and 30 deletions
-14
View File
@@ -1,14 +0,0 @@
# The client id of your Strava app.
STRAVA_CLIENT_ID=178054
# The client secret of your Strava app.
STRAVA_CLIENT_SECRET=a88e76d0d018e5a728f7edbb4eb4ef296c9f6faf
# You will need to obtain this token the first time you launch the app.
# Leave this unchanged for now until the app tells you otherwise.
# Do not use the refresh token displayed on your Strava API settings page, it will not work.
STRAVA_REFRESH_TOKEN=f09d865c970bd012dcd5daa149e6d43feb973446
# Valid timezones can found under TZ Identifier column here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
TZ=Europe/Berlin
# The UID and GID to create/own files managed by statistics-for-strava
PUID=1000
PGID=1000
+18 -16
View File
@@ -1,18 +1,20 @@
services: services:
strava-statistics: databasement:
image: robiningelbrecht/strava-statistics:latest image: davidcrty/databasement:1
container_name: statistics-for-strava container_name: databasement
restart: unless-stopped user: "1000:1000"
networks: # ports:
- bragi-local # - 2226:2226
volumes: environment:
- /opt/07_sport/strava/config:/var/www/config/app - DB_CONNECTION=sqlite
- /opt/07_sport/strava/build:/var/www/build - DB_DATABASE=/data/database.sqlite
- /opt/07_sport/strava/storage/database:/var/www/storage/database - ENABLE_QUEUE_WORKER=true
- /opt/07_sport/strava/storage/files:/var/www/storage/files volumes:
env_file: ./.env - /opt/98_backups/databasement:/data
# ports: - /mnt/immich/Backups:/backups
# - 8083:8080 networks:
- bragi-local
networks: networks:
bragi-local: bragi-local:
external: true external: true