• 0 Posts
  • 10 Comments
Joined 11 months ago
cake
Cake day: August 17th, 2023

help-circle





  • I used to listen to them all the time.before the move to Spotify. Once they came out from behind Spotify and I could get them in my preferred app, I just couldn’t get back in the grove of listening to them. It seemed like for every 5 of their releases, I would find one interesting.

    Don’t let this stop anyone else from listening to them as they research the shit out of their topics. Their Jim Jones episodes were more informative than any other description I have ever heard.





  • Here you go, this is my docker compose. You can modify the pieces as you see fit.

    version: ‘3’ services:

    Bookstack

    bookstack:
        image: lscr.io/linuxserver/bookstack
        container_name: bookstack
        environment:
            - PUID=${PUID}
            - PGID=${PGID}
            - APP_URL=
            - DB_HOST=bookstack_db
            - DB_USER=bookstack
            - DB_PASSWORD=${BS_DB_PASS}
            - DB_DATABASE=bookstackapp
        volumes:
            - ${DATA_DIR}/bookstack:/config
        ports:
            - 6875:80
        restart: unless-stopped
        depends_on:
            - bookstack_db
    bookstack_db:
        image: lscr.io/linuxserver/mariadb
        container_name: bookstack_db
        environment:
            - PUID=${PUID}
            - PGID=${PGID}
            - MYSQL_ROOT_PASSWORD=${BS_DB_PASS}
            - TZ=${TIMEZONE}
            - MYSQL_DATABASE=bookstackapp
            - MYSQL_USER=bookstack
            - MYSQL_PASSWORD=${BS_DB_PASS}
        volumes:
            - ${DATA_DIR}/bookstack/mariadb:/config
        restart: unless-stopped