Hi,
I'm having trouble installing Spotweb with Mariadb in Docker. My other Docker apps survived migration to TOS 7 but Spotweb wouldn't. Does anybody have a working docker-compose and install guide?
[Question] Anybody have a guide for installing Spotweb in a Docker - TOS 7
- bartmans99
- Posts: 25
- Joined: 05 Jun 2025, 01:13

- bartmans99
- Posts: 25
- Joined: 05 Jun 2025, 01:13

Re: [Question] Anybody have a guide for installing Spotweb in a Docker - TOS 7
I have it running stable now. Below the compose. Please change to PUID en PGID to approriate user.
services:
spotweb:
image: erikdevries/spotweb
container_name: spotweb
environment:
- TZ=Europe/Amsterdam
- DB_HOST=spotweb_db
- DB_NAME=spotweb
- DB_USER=your_user
- DB_PASS=your_password
- CRON_INTERVAL=*/30 * * * *
- PUID=1007
- PGID=1007
ports:
- 81:80/tcp
depends_on:
- spotweb_db
security_opt:
- no-new-privileges:true
restart: always
spotweb_db:
image: linuxserver/mariadb:latest
container_name: spotweb_db
environment:
- MYSQL_ROOT_PASSWORD=spotweb
- PUID=1007
- PGID=1007
- TZ=Europe/Amsterdam
- MYSQL_DATABASE=spotweb
- MYSQL_USER=your_user
- MYSQL_PASSWORD=your_password
volumes:
- /Volume1/Docker/spotweb-mariadb:/config
security_opt:
- no-new-privileges:true
restart: always
networks: {}
services:
spotweb:
image: erikdevries/spotweb
container_name: spotweb
environment:
- TZ=Europe/Amsterdam
- DB_HOST=spotweb_db
- DB_NAME=spotweb
- DB_USER=your_user
- DB_PASS=your_password
- CRON_INTERVAL=*/30 * * * *
- PUID=1007
- PGID=1007
ports:
- 81:80/tcp
depends_on:
- spotweb_db
security_opt:
- no-new-privileges:true
restart: always
spotweb_db:
image: linuxserver/mariadb:latest
container_name: spotweb_db
environment:
- MYSQL_ROOT_PASSWORD=spotweb
- PUID=1007
- PGID=1007
- TZ=Europe/Amsterdam
- MYSQL_DATABASE=spotweb
- MYSQL_USER=your_user
- MYSQL_PASSWORD=your_password
volumes:
- /Volume1/Docker/spotweb-mariadb:/config
security_opt:
- no-new-privileges:true
restart: always
networks: {}