Anybody has a bookstack docker-compose file I can use to self host?
Bookstack Installation
bookstack docker not reachable
edit: It is now reachable. It just took 30 mins on raspberry pi 3
More on reddit.com[Help] setting up BookStack Docker container
I've done the following. I run a seperate MariaDB instance. First create the mariaDB:
docker create \ --restart=always \ --name=mariadb-bookstack \ -v /DOCKER-DATA/mariadb-bookstack:/var/lib/mysql \ -e MYSQL_ROOT_PASSWORD=[MARIADB-ROOT-PASSWORD] \ -e MYSQL_DATABASE=bookstack \ -e MYSQL_USER=bookstack \ -e MYSQL_PASSWORD=[BOOKSTACKDB-PASSWORD] \ -e TZ=Europe/Amsterdam \ mariadb
Then create the bookstack container:
docker create \ --restart=always \ --name=bookstack \ --link mariadb-bookstack:mariadb-bookstack \ -e DB_HOST=mariadb-bookstack:3306 \ -e DB_DATABASE=bookstack \ -e DB_USERNAME=bookstack \ -e DB_PASSWORD=[BOOKSTACKDB-PASSWORD] \ -p 8011:80 \ solidnerd/bookstack:0.14.3
First start the MariaDB container, check with docker logs mariadbname if everything is cool, then start the bookstack container. Connect to bookstack on 8011 or adjust the port :)
More on reddit.comHow secure is Bookstack?
How can I integrate Bookstack with other systems?
Can I export my data from Bookstack?
Can anyone share their bookstack docker-compose app with me?
I am trying to host it and the sample docker-compose file herehttps://github.com/linuxserver/docker-bookstack/pkgs/container/bookstack#usage
does not work for me. Getting error when db migration is applied.
I am testing this on my windows machine locally but intend to host in a linux machine.
docker-compose file. https://pastebin.com/AVLrG4Ea
UPDATE:
Thanks everyone for help. I was able to resolve this issue.
Looks like the problem is with windows directory mapping. see comment from u/ssddanbrown below
https://github.com/linuxserver/docker-bookstack/issues/125
Current docker compose file working in ubuntu
https://pastebin.com/8fcPKeTQ
Has anyone successfully installed Bookstack recently? I can't seem to get it right. I have tried docker, docker-compose, and manual installation. None of these methods worked for me. is it a general issue or its only me? my frustration level is so high right now.