32 lines
877 B
YAML
32 lines
877 B
YAML
# Docker Compose File für homarr per VNC
|
|
# docker-compose -f docker-compose.wifirefoxzarr.yml up -d
|
|
version: '3.5'
|
|
|
|
networks:
|
|
homarr:
|
|
|
|
|
|
#---------------------------------------------------------------------#
|
|
# 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:ro # Optional, only if you want docker integration
|
|
- /docker/homarr/configs:/app/data/configs
|
|
- /docker/homarr/icons:/app/public/icons
|
|
- /docker/homarr/data:/data
|
|
ports:
|
|
- '7575:7575'
|
|
networks:
|
|
- homarr
|
|
logging:
|
|
driver: "gelf"
|
|
options:
|
|
gelf-address: "udp://192.168.1.250:12201"
|
|
|
|
|
|
|