32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
###########################################################################
|
|
###########################################################################
|
|
##
|
|
## Docker Compose File: Homarr (https://ghcr.io/)
|
|
## Function: Application Dashboard
|
|
##
|
|
## Documentation: https://homarr.dev/docs/getting-started/after-the-installation
|
|
##
|
|
###########################################################################
|
|
###########################################################################
|
|
services:
|
|
homarr:
|
|
image: ghcr.io/ajnart/homarr:latest
|
|
container_name: homarr
|
|
restart: unless-stopped
|
|
ports:
|
|
- "${WEBUI_PORT_HOMARR:?err}:7575"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ${FOLDER_FOR_DATA:?err}/homarr/configs:/app/data/configs
|
|
- ${FOLDER_FOR_DATA:?err}/homarr/icons:/app/public/icons
|
|
- ${FOLDER_FOR_DATA:?err}/homarr/data:/data
|
|
environment:
|
|
- PUID=${PUID:?err}
|
|
- PGID=${PGID:?err}
|
|
- UMASK=${UMASK:?err}
|
|
- TZ=${TIMEZONE:?err}
|
|
|
|
networks:
|
|
default:
|
|
name: mediastack
|
|
external: true |