21 lines
706 B
YAML
21 lines
706 B
YAML
version: '3'
|
|
#---------------------------------------------------------------------#
|
|
# Homarr - A simple, yet powerful dashboard for your server. #
|
|
#---------------------------------------------------------------------#
|
|
services:
|
|
homarr:
|
|
container_name: homarr
|
|
image: ghcr.io/ajnart/homarr:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock # Optional, only if you want docker integration
|
|
- homarr-storage-configs:/app/data/configs
|
|
- homarr-storage-icons:/app/public/icons
|
|
- homarr-storage-data:/data
|
|
ports:
|
|
- '8087:7575'
|
|
|
|
volumes:
|
|
homarr-storage-configs: {}
|
|
homarr-storage-icons: {}
|
|
homarr-storage-data: {} |