immich version bump, add workout tracker

This commit is contained in:
azpsen 2025-04-27 20:20:04 -05:00
parent 15c10fa570
commit 22d9444d0f
2 changed files with 27 additions and 3 deletions

View File

@ -33,7 +33,7 @@ services:
## Immich (photo library management)
immich_server:
container_name: immich_server
image: ghcr.io/immich-app/immich-server:v1.131.3
image: ghcr.io/immich-app/immich-server:v1.132.1
volumes:
- ${IMMICH_LIBRARY}:/usr/src/app/upload
env_file:
@ -52,9 +52,9 @@ services:
dns:
- ${DNS_IP}
restart: unless-stopped
immich_machine_learning:
immich-machine-learning:
container_name: immich_machine_learning
image: ghcr.io/immich-app/immich-machine-learning:v1.131.3
image: ghcr.io/immich-app/immich-machine-learning:v1.132.1
volumes:
- model-cache:/cache
env_file:
@ -520,6 +520,20 @@ services:
- ${DNS_IP}
restart: unless-stopped
## Workout Tracker
workout-tracker:
container_name: workout-tracker
image: ghcr.io/jovandeginste/workout-tracker:master
ports:
# Host Port:Container Port
- 5021:8080
volumes:
- ${DOCKER_DIR}/workout-tracker:/data
env_file:
- ${ENV_DIR}/workout-tracker.env
restart: unless-stopped
#---------------- MONITORING ----------------#

View File

@ -54,6 +54,7 @@ These are all the services hosted, what they are for, and any clients I use with
- [Vaultwarden](https://github.com/dani-garcia/vaultwarden) - Password manager
- [Bitwarden clients](https://bitwarden.com/download/)
- [Wizarr](https://github.com/Wizarrrr/wizarr?tab=readme-ov-file) - Jellyfin user invite manager
- [Workout Tracker](https://github.com/jovandeginste/workout-tracker) - Used with [OpenTracks](https://github.com/OpenTracksApp/OpenTracks) to track my cycling
### Monitoring
@ -417,3 +418,12 @@ SYMFONY__ENV__MAILER_DSN=
SYMFONY__ENV__FROM_EMAIL=
```
### Workout Tracker
[Docs](https://github.com/jovandeginste/workout-tracker#docker)
```env
# workout-tracker.env
WT_JWT_ENCRYPTION_KEY=
```