diff --git a/docker-compose.yml b/docker-compose.yml index 4fdec49..0c037a5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,7 @@ include: - audiobookshelf/docker-compose.yml - gitea/docker-compose.yml + - homarr/docker-compose.yml - immich/docker-compose.yml - jellyfin/docker-compose.yml - nextcloud/docker-compose.yml diff --git a/homarr/.env.example b/homarr/.env.example new file mode 100644 index 0000000..7b455b2 --- /dev/null +++ b/homarr/.env.example @@ -0,0 +1,2 @@ +HOMARR_DATA_DIR= +HOMARR_ENCRYPTION_KEY= \ No newline at end of file diff --git a/homarr/docker-compose.yml b/homarr/docker-compose.yml new file mode 100644 index 0000000..5de8db5 --- /dev/null +++ b/homarr/docker-compose.yml @@ -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' \ No newline at end of file