15 lines
410 B
YAML
15 lines
410 B
YAML
services:
|
|
<< service_name >>:
|
|
image: lscr.io/linuxserver/speedtest-tracker:latest
|
|
container_name: << service_name >>
|
|
ports:
|
|
- "<< port >>:80"
|
|
environment:
|
|
- TZ=<< timezone >>
|
|
- PUID=<< puid >>
|
|
- PGID=<< pgid >>
|
|
- APP_KEY=<< app_key >>
|
|
- DB_CONNECTION=sqlite
|
|
volumes:
|
|
- << data_dir >>/<< service_name >>/config:/config
|
|
restart: unless-stopped
|