• 0 Posts
  • 28 Comments
Joined 1 year ago
cake
Cake day: August 17th, 2023

help-circle



  • I’ve been running OPNsense as a VM in Proxmox for a year on an AliExpress box that doesn’t have ECC. If I might ask, why do you have a requirement for ECC?

    Before this box, I ran a Dell R230 with pfSense but got tired of the noise and 40 watt power draw.

    I’ve had zero issues without ECC, so I’m just curious about your need for it.











  • We are in the middle of rolling out a new SaaS solution at work that just works better in Edge. The amount of outrageous levels of anger and disgust we get from telling them to use Edge is stupid. Even telling users it is built on Chromium, just like Chrome, does nothing to dissuade their unfounded anger.

    With some people it actually comes down to telling them, “if you don’t use Edge, then I guess you need to start looking for another job that only uses Chrome”.

    I just don’t get it.




  • 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