37 lines
665 B
YAML
37 lines
665 B
YAML
---
|
|
|
|
# Homarr
|
|
# A self-hosted web dashboard
|
|
# Created by Thomas Camlong
|
|
# ↳ https://github.com/homarr-labs/homarr
|
|
|
|
services:
|
|
homarr:
|
|
image: ghcr.io/homarr-labs/homarr:latest
|
|
container_name: homarr
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- proxy
|
|
# ports:
|
|
# - 7575:7575
|
|
|
|
environment:
|
|
# PUID: 1000
|
|
# PGID: 1000
|
|
SECRET_ENCRYPTION_KEY: ${SECRET_ENCRYPTION_KEY}
|
|
|
|
volumes:
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- homarr-appdata:/appdata
|
|
|
|
volumes:
|
|
homarr-appdata:
|
|
driver: local
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|
|
# Documentation available at https://homarr.dev/docs |