Author SHA1 Message Date
tobbbs 91ea6867a0 Update compose.yaml 2026-05-27 14:27:29 +02:00
tobbbs a196a19ea2 Add .env 2026-05-27 14:26:49 +02:00
tobbbs 16a85de8d4 Add compose.yaml 2026-05-27 14:26:21 +02:00
2 changed files with 27 additions and 48 deletions
+14
View File
@@ -0,0 +1,14 @@
# 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
+13 -48
View File
@@ -1,53 +1,18 @@
services:
mealie:
image: ghcr.io/mealie-recipes/mealie:v2.8.0
container_name: mealie
restart: always
strava-statistics:
image: robiningelbrecht/strava-statistics:latest
container_name: statistics-for-strava
restart: unless-stopped
networks:
- bragi-local
volumes:
- /opt/07_sport/strava/config:/var/www/config/app
- /opt/07_sport/strava/build:/var/www/build
- /opt/07_sport/strava/storage/database:/var/www/storage/database
- /opt/07_sport/strava/storage/files:/var/www/storage/files
env_file: ./.env
# ports:
# - 9925:9000
deploy:
resources:
limits:
memory: 1000M #
networks:
- bragi-local
volumes:
- /home/shrek/docker/stack/mealie/mealie-data:/app/data/
environment:
ALLOW_SIGNUP: "false"
TZ: Europe/Berlin
DB_ENGINE: postgres
POSTGRES_USER: mealie
POSTGRES_PASSWORD: mealie
POSTGRES_SERVER: postgres
POSTGRES_PORT: 5432
POSTGRES_DB: mealie
depends_on:
postgres:
condition: service_healthy
postgres:
networks:
- bragi-local
container_name: 04_groceries_postgres
image: postgres:15
restart: always
volumes:
- /home/shrek/docker/stack/mealie/mealie-pgdata:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: mealie
POSTGRES_USER: mealie
PGUSER: mealie
healthcheck:
test:
- CMD
- pg_isready
interval: 30s
timeout: 20s
retries: 3
volumes:
mealie-data: null
mealie-pgdata: null
# - 8083:8080
networks:
bragi-local:
external: true