mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 23:45:24 +02:00
21 lines
381 B
YAML
21 lines
381 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
librespeed:
|
|
image: lscr.io/linuxserver/librespeed:latest
|
|
restart: unless-stopped
|
|
expose:
|
|
- 80
|
|
volumes:
|
|
- librespeed-config:/config
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=${TZ}
|
|
- PASSWORD=${PASSWORD}
|
|
- CUSTOM_RESULTS=${CUSTOM_RESULTS}
|
|
- DB_TYPE=sqlite
|
|
|
|
volumes:
|
|
librespeed-config:
|