Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e9ece413b8 | ||
|
|
6456d78b83 | ||
|
|
3b4ab67927 | ||
|
|
c0ec9684ec | ||
|
|
b8f88ea29a | ||
|
|
e2e69a2d9b | ||
|
|
3b7582f4f5 | ||
|
|
c21b0dc575 | ||
|
|
0f6d59e8d9 | ||
|
|
e07471cb98 | ||
|
|
ae4a59a1cc | ||
|
|
a9f22ba516 | ||
|
|
e7ac6ebd5b | ||
|
|
cb7ba01586 | ||
|
|
9796d8648c | ||
|
|
de5af376db | ||
|
|
1d7b6f4d49 |
@@ -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,3 @@
|
|||||||
# Bragi-Local
|
# Bragi-Local
|
||||||
|
|
||||||
My Compose Stacks for all my Docker Services running on my Local Server
|
My Compose Stacks for all my Docker Services running on my Local Server
|
||||||
|
|
||||||
06_maintanance:
|
|
||||||
- Lubelogger
|
|
||||||
- Postgresql for Lubelogger
|
|
||||||
+50
-9
@@ -1,18 +1,59 @@
|
|||||||
services:
|
services:
|
||||||
strava-statistics:
|
newt:
|
||||||
image: robiningelbrecht/strava-statistics:latest
|
image: fosrl/newt
|
||||||
container_name: statistics-for-strava
|
container_name: newt
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- bragi-local
|
- bragi-local
|
||||||
|
environment:
|
||||||
|
- PANGOLIN_ENDPOINT=https://tunnel.doeringer.eu
|
||||||
|
- NEWT_ID=yogqsqz240z1kgr
|
||||||
|
- NEWT_SECRET=chw2i78vd9w9mqaeyjxq7iyrvpu6z365zgmkxxiccus76933
|
||||||
|
|
||||||
|
hawser:
|
||||||
|
image: ghcr.io/finsys/hawser:latest
|
||||||
|
container_name: hawser
|
||||||
volumes:
|
volumes:
|
||||||
- /opt/07_sport/strava/config:/var/www/config/app
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
- /opt/07_sport/strava/build:/var/www/build
|
- /opt/hawser-stacks:/opt/hawser-stacks
|
||||||
- /opt/07_sport/strava/storage/database:/var/www/storage/database
|
environment:
|
||||||
- /opt/07_sport/strava/storage/files:/var/www/storage/files
|
- STACKS_DIR=/opt/hawser-stacks
|
||||||
env_file: ./.env
|
- DOCKHAND_SERVER_URL=wss://hydra.doeringer.eu/api/hawser/connect
|
||||||
|
- TOKEN=Dj-xnGfioO4x2UcAS72ipxRzhP9PSJUS6F8R66vI2WQ
|
||||||
|
|
||||||
|
n8n:
|
||||||
|
image: n8nio/n8n:latest
|
||||||
|
container_name: n8n
|
||||||
|
restart: always
|
||||||
|
user: "${n8n_user}"
|
||||||
|
networks:
|
||||||
|
- bragi-local
|
||||||
# ports:
|
# ports:
|
||||||
# - 8083:8080
|
# - "${N8N_Port}:80"
|
||||||
|
environment:
|
||||||
|
- N8N_COMMUNITY_PACKAGES_ENABLED=true
|
||||||
|
- DB_SQLITE_POOL_SIZE=4
|
||||||
|
- N8N_BASIC_AUTH_ACTIVE=true
|
||||||
|
- N8N_RUNNERS_ENABLED=true
|
||||||
|
- NODE_FUNCTION_ALLOW_EXTERNAL=ws
|
||||||
|
- N8N_ENFORCE_SETTINGS_FILE_PERMISSIONS=true
|
||||||
|
- N8N_LISTEN_ADDRESS=0.0.0.0
|
||||||
|
- N8N_PROXY_HOPS=1
|
||||||
|
- N8N_PROTOCOL=https
|
||||||
|
- N8N_BASIC_AUTH_USER=${N8N_AUser}
|
||||||
|
- N8N_BASIC_AUTH_PASSWORD=${N8N_APass}
|
||||||
|
- N8N_HOST=${N8N_HOST}
|
||||||
|
- WEBHOOK_URL=${N8N_Webhook}
|
||||||
|
- N8N_PORT=80
|
||||||
|
- N8N_ENABLE_EXECUTE_COMMAND=true
|
||||||
|
- NODES_EXCLUDE=[]
|
||||||
|
|
||||||
|
#- NODE_TLS_REJECT_UNAUTHORIZED=0
|
||||||
|
volumes:
|
||||||
|
- /opt/00_infra/n8n:/home/node
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
bragi-local:
|
bragi-local:
|
||||||
external: true
|
external: true
|
||||||
Reference in New Issue
Block a user