Bookstack Wiki Application

firstly let me say WOW!!

please guys can you help the DietPi noob

i am trying to install Bookstack

i have Docker and Portainer installed on my dietpi

i have tried to follow the following example

i have created a folder " /home/bookstack "

This is my Docker Stack for Bookstack


version: “2”
services:
bookstack:
image: linuxserver/bookstack
container_name: bookstack
environment:
- PUID=1000
- PGID=1000
- DB_HOST=bookstack_db
- DB_USER=bookstack
- DB_PASS=yourdbpass
- DB_DATABASE=bookstackapp
volumes:
- /home/bookstack:/config
ports:
- 6875:80
restart: unless-stopped
depends_on:
- bookstack_db
bookstack_db:
image: linuxserver/mariadb
container_name: bookstack_db
environment:
- PUID=1000
- PGID=1000
- MYSQL_ROOT_PASSWORD=yourdbpass
- TZ=Europe/London
- MYSQL_DATABASE=bookstackapp
- MYSQL_USER=bookstack
- MYSQL_PASSWORD=yourdbpass
volumes:
- /home/bookstack/DB:/config
restart: unless-stopped

the docker starts however when i go to " http:/mydietpiip:6875/login " i get " HTTP ERROR 500 "

any ideas what i should be doing?

any help greatly appreciated

welcome to our community.

Pls select both container in Portainer and restart them