25 lines
507 B
YAML
25 lines
507 B
YAML
#### NETWORKS
|
|
networks:
|
|
back_network:
|
|
driver: bridge
|
|
attachable: true
|
|
|
|
#### SERVICES
|
|
services:
|
|
### homarr
|
|
homarr:
|
|
container_name: homarr-app
|
|
hostname: homarr-app
|
|
image: ghcr.io/ajnart/homarr:latest
|
|
restart: unless-stopped
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- ./configs:/app/data/configs
|
|
- ./icons:/app/public/icons
|
|
- ./data:/data
|
|
ports:
|
|
- '7575:7575'
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
networks:
|
|
- back_network |