Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1d90ed3c4 | ||
|
|
740557aeec | ||
|
|
64bfae21f0 |
@@ -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
|
|
||||||
@@ -1,7 +1,4 @@
|
|||||||
# Bragi-Local
|
# Bragi-Local
|
||||||
|
|
||||||
My Compose Stacks for all my Docker Services running on my Local Server
|
Services:
|
||||||
|
- Lubelogger
|
||||||
06_maintanance:
|
|
||||||
- Lubelogger
|
|
||||||
- Postgresql for Lubelogger
|
|
||||||
+24
-10
@@ -1,18 +1,32 @@
|
|||||||
services:
|
services:
|
||||||
strava-statistics:
|
lubelogger:
|
||||||
image: robiningelbrecht/strava-statistics:latest
|
image: ghcr.io/hargata/lubelogger:latest
|
||||||
container_name: statistics-for-strava
|
build: .
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- bragi-local
|
- bragi-local
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/07_sport/strava/config:/var/www/config/app
|
- /opt/06_maintanance/data:/App/data
|
||||||
- /opt/07_sport/strava/build:/var/www/build
|
- /opt/06_maintanance/keys:/root/.aspnet/DataProtection-Keys
|
||||||
- /opt/07_sport/strava/storage/database:/var/www/storage/database
|
# ports:
|
||||||
- /opt/07_sport/strava/storage/files:/var/www/storage/files
|
# - 8082:8080
|
||||||
env_file: ./.env
|
postgres:
|
||||||
# ports:
|
image: postgres:14
|
||||||
# - 8083:8080
|
restart: unless-stopped
|
||||||
|
networks:
|
||||||
|
- bragi-local
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: lubelogger
|
||||||
|
POSTGRES_PASSWORD: lubepass
|
||||||
|
POSTGRES_DB: lubelogger
|
||||||
|
volumes:
|
||||||
|
- /opt/06_maintanance/init.sql:/docker-entrypoint-initdb.d/init.sql
|
||||||
|
- /opt/06_maintanance/postgres:/var/lib/postgresql/data
|
||||||
|
- /etc/localtime:/etc/localtime:ro
|
||||||
|
volumes:
|
||||||
|
data: null
|
||||||
|
keys: null
|
||||||
|
postgres: null
|
||||||
networks:
|
networks:
|
||||||
bragi-local:
|
bragi-local:
|
||||||
external: true
|
external: true
|
||||||
Reference in New Issue
Block a user