27 lines
590 B
YAML
27 lines
590 B
YAML
version: '3'
|
|
|
|
services:
|
|
homarr:
|
|
container_name: homarr
|
|
image: ghcr.io/ajnart/homarr:latest
|
|
ports:
|
|
- 7575:7575
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/homarr/configs:/app/data/configs
|
|
- ${DOCKER_CONFIGS}/homarr/icons:/app/public/icons
|
|
|
|
speedtest:
|
|
container_name: speedtest
|
|
image: henrywhitaker3/speedtest-tracker
|
|
environment:
|
|
- TZ=${TZ}
|
|
- PGID=${PGID}
|
|
- PUID=${PUID}
|
|
- OOKLA_EULA_GDPR=true
|
|
ports:
|
|
- 8765:80
|
|
restart: always
|
|
volumes:
|
|
- ${DOCKER_CONFIGS}/speedtesttracker/config:/config
|