--- version: "2" services: app: image: ${DOCKER_REGISTRY:-}lscr.io/linuxserver/bookstack:latest env_file: - stack.env volumes: - /share/docker_data/bookstack/bookstack_app_data:/config ports: - 6875:80 restart: ${RESTART:-unless-stopped} depends_on: - db labels: com.centurylinklabs.watchtower.enable: true homepage.group: Utilities homepage.name: Bookstack homepage.weight: 1 homepage.icon: bookstack.png homepage.href: https://bookstack.sectorq.eu homepage.description: Books homepage.server: my-docker homepage.container: bookstack-app-1 # homepage.widget.type: ${APPNAME} # homepage.widget.url: https://${APPNAME}.sectorq.eu # homepage.widget.key: ddfc91b29920082636da70cc677aec74c88a7666 # homepage.widget.version: 2 db: image: ${DOCKER_REGISTRY:-}lscr.io/linuxserver/mariadb environment: PUID: 0 PGID: 0 env_file: - stack.env volumes: - /share/docker_data/bookstack/bookstack_db_data:/config restart: ${RESTART:-unless-stopped}