maintenance

This commit is contained in:
debian
2024-12-28 18:28:52 +01:00
parent 4229392454
commit e8a376ffaf
3 changed files with 15 additions and 21 deletions

View File

@@ -7,7 +7,7 @@ services:
file: ${TEMPLATES_PATH} file: ${TEMPLATES_PATH}
service: default service: default
container_name: postgres container_name: postgres
image: postgres:latest image: postgres:16.4
ports: ports:
- 5432:5432 - 5432:5432
networks: networks:

View File

@@ -4,27 +4,18 @@ services:
file: ${TEMPLATES_PATH} file: ${TEMPLATES_PATH}
service: default service: default
container_name: speedtest container_name: speedtest
image: ghcr.io/librespeed/speedtest:latest image: openspeedtest/latest
environment:
MODE: standalone
TITLE: "LibreSpeed"
#TELEMETRY: "false"
#ENABLE_ID_OBFUSCATION: "false"
#REDACT_IP_ADDRESSES: "false"
#PASSWORD:
#EMAIL:
#DISABLE_IPINFO: "false"
#DISTANCE: "km"
#WEBPORT: 80
ports: ports:
- "4001:80" # webport mapping (host:container) - "4001:3001" # webport mapping (host:container)
- "3999:3001" # webport mapping (host:container)
networks: networks:
- ip4net - ip4net
labels: labels:
# Watchtower # Watchtower
- "com.centurylinklabs.watchtower.enable=true" - 'com.centurylinklabs.watchtower.enable=true'
# Traefik # Traefik
- "traefik.enable=true" - 'traefik.enable=true'
- "traefik.http.routers.speedtest.rule=Host(`speedtest.${LOCAL_DOMAIN}`)" - 'traefik.http.routers.speedtest.rule=Host(`speedtest.${LOCAL_DOMAIN}`)'
- "traefik.http.routers.speedtest.entrypoints=https" - 'traefik.http.routers.speedtest.entrypoints=https'
- 'traefik.http.routers.speedtest.tls=true' - 'traefik.http.routers.speedtest.tls=true'
- 'traefik.http.middlewares.limit.buffering.maxRequestBodyBytes=10000000000'

View File

@@ -46,7 +46,7 @@ services:
# https://github.com/Salvoxia/immich-folder-album-creator # https://github.com/Salvoxia/immich-folder-album-creator
# one time run: # one time run:
# docker run -e API_URL="https://immich.crescentec.xyz/api/" -e API_KEY="qTaebdVMtph9yD0pSJRJDQJkDEpexiXNMJ5V5HBEnA" -e ROOT_PATH="/usr/src/app/external" salvoxia/immich-folder-album-creator:latest /script/immich_auto_album.sh # docker run -e API_URL="https://immich.crescentec.xyz/api/" -e API_KEY="qTaebdVMtph9yD0pSJRJDQJkDEpexiXNMJ5V5HBEnA" -e ROOT_PATH="/usr/src/app/external" -e LOG_LEVEL="DEBUG" salvoxia/immich-folder-album-creator:latest /script/immich_auto_album.sh
immich-folder-album-creator: immich-folder-album-creator:
extends: extends:
file: ${TEMPLATES_PATH} file: ${TEMPLATES_PATH}
@@ -58,3 +58,6 @@ services:
API_KEY: qTaebdVMtph9yD0pSJRJDQJkDEpexiXNMJ5V5HBEnA API_KEY: qTaebdVMtph9yD0pSJRJDQJkDEpexiXNMJ5V5HBEnA
ROOT_PATH: /usr/src/app/external ROOT_PATH: /usr/src/app/external
CRON_EXPRESSION: "0 * * * *" CRON_EXPRESSION: "0 * * * *"
labels:
# Watchtower
- "com.centurylinklabs.watchtower.enable=true"