Skip to content

Commit

Permalink
fix: adjust indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
l4rm4nd committed Nov 4, 2024
1 parent dba1b9f commit a2977e1
Showing 1 changed file with 21 additions and 20 deletions.
41 changes: 21 additions & 20 deletions examples/speedtest-tracker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
services:

speedtest:
container_name: speedtest
image: henrywhitaker3/speedtest-tracker
ports:
- 8765:80
expose:
- 80
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/speedtest-tracker/config:/config
environment:
- TZ=Europe/Berlin
- PGID=1000
- PUID=1000
- OOKLA_EULA_GDPR=true
logging:
driver: "json-file"
options:
max-file: "10"
max-size: "200k"
restart: unless-stopped
speedtest:
image: henrywhitaker3/speedtest-tracker
container_name: speedtest
hostname: speedtest
restart: unless-stopped
ports:
- 8765:80/tcp
expose:
- 80
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/speedtest-tracker/config:/config
environment:
- TZ=Europe/Berlin
- PGID=1000
- PUID=1000
- OOKLA_EULA_GDPR=true
logging:
driver: "json-file"
options:
max-file: "10"
max-size: "200k"

0 comments on commit a2977e1

Please sign in to comment.