so. it's come to this, huh?

This commit is contained in:
Peter Smit
2025-03-29 21:19:59 +01:00
parent 456d3755e4
commit 5af2847fb5
3 changed files with 15 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
include: include:
- audiobookshelf/docker-compose.yml - audiobookshelf/docker-compose.yml
- gitea/docker-compose.yml - gitea/docker-compose.yml
- homarr/docker-compose.yml
- immich/docker-compose.yml - immich/docker-compose.yml
- jellyfin/docker-compose.yml - jellyfin/docker-compose.yml
- nextcloud/docker-compose.yml - nextcloud/docker-compose.yml

2
homarr/.env.example Normal file
View File

@@ -0,0 +1,2 @@
HOMARR_DATA_DIR=
HOMARR_ENCRYPTION_KEY=

12
homarr/docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
homarr:
container_name: homarr
image: ghcr.io/homarr-labs/homarr:1.13.1
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${HOMARR_DATA_DIR}:/appdata
environment:
- SECRET_ENCRYPTION_KEY=${HOMARR_ENCRYPTION_KEY}
ports:
- '7575:7575'