SQLite '400 Bad Request' #145
-
Copy and pasting your docker-compose into my existing docker-compose file is proving to be challenging. Admittingly, I'm a bit of a docker novice. I have been successful in loading various docker containers via docker-compose, but yours contains code/structure ive never come across before in a docker-compose. I get the following when attempting to pull. (i put yours at the top of my docker compose file for convenience... I'm wondering if its just a spacing issue... Noticed theres varing amounts of spacing as compared to all my other containers in my compose file. Also - i hope this is ok, but i did deviate and changed the app_port to 8765 (coping the predecessor) I'm running a Synology DS1621+ NAS (DSM 7.1.1) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 19 replies
-
Check the docs site for the official examples: https://docs.speedtest-tracker.dev/getting-started/installation#install-with-docker-compose Choose the one based on the database you want to use. Just as an example, this is my docker-compose, with 2 space indentation (doesn't make much difference), using an external database (MariaDB): version: '3.3'
services:
speedtest-tracker:
image: ghcr.io/alexjustesen/speedtest-tracker:v0.3.0
container_name: speedtest-tracker
restart: unless-stopped
ports:
- 8008:443
environment:
TZ: Europe/Rome
PUID: 1000
PGID: 1000
DB_CONNECTION: mysql
DB_HOST: mariadb.domain.local
DB_PORT: 3306
DB_DATABASE: speedtest_tracker
DB_USERNAME: db_user
DB_PASSWORD: db_pw
volumes:
- /etc/localtime:/etc/localtime:ro
- $PWD/config:/config
- $PWD/certs:/etc/ssl/web |
Beta Was this translation helpful? Give feedback.
Check the docs site for the official examples: https://docs.speedtest-tracker.dev/getting-started/installation#install-with-docker-compose
Choose the one based on the database you want to use.
Just as an example, this is my docker-compose, with 2 space indentation (doesn't make much difference), using an external database (MariaDB):