[Question] Anybody have a guide for installing Spotweb in a Docker - TOS 7

Guides created and maintained by community members, not official documentation.
Post Reply
User avatar
bartmans99
Posts: 25
Joined: 05 Jun 2025, 01:13
Netherlands

[Question] Anybody have a guide for installing Spotweb in a Docker - TOS 7

Post by bartmans99 »

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?
User avatar
bartmans99
Posts: 25
Joined: 05 Jun 2025, 01:13
Netherlands

Re: [Question] Anybody have a guide for installing Spotweb in a Docker - TOS 7

Post by bartmans99 »

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: {}
Post Reply

Return to “Community-Created Guides”