commit 5c577a64bb74a733961bfd5af2087fc93684fab0 Author: stephane.david Date: Sat Nov 15 17:50:49 2025 +0100 First version diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..210cf2a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,18 @@ +services: + homarr: + container_name: Homarr + image: ghcr.io/homarr-labs/homarr:latest + healthcheck: + test: ["CMD-SHELL", "nc -z 127.0.0.1 7575 || exit 1"] + interval: 10s + timeout: 5s + retries: 3 + start_period: 90s + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - /var/lib/docker/volumes/homarr:/appdata:rw + environment: + SECRET_ENCRYPTION_KEY: 1972297B4C92E4C03EDFB7D771073BEACFDFAC6824BF826BCC07D4D4D6881EB2 + ports: + - 7575:7575 + restart: always \ No newline at end of file