In this video, we will show you how to install Bookstack, a self-hosted documentation platform, on Ubuntu using Docker Compose. Bookstack is a great way to keep track of your knowledge and make it easily accessible to everyone. The docker-compose files for Bookstack and NGINX Proxy Manager are below. Bookstack Docker Compose: --- version: "2" services: bookstack: image: lscr.io/linuxserver/bookstack container_name: bookstack environment: PUID=1000 PGID=1000 APP_URL=CUSTOMURL DB_HOST=bookstack_db DB_PORT=3306 DB_USER=bookstack DB_PASS=DBPASSWORD DB_DATABASE=bookstackapp volumes: bookstack_app:/config ports: 6875:80 restart: unless-stopped depends_on: bookstack_db bookstack_db: image: lscr.io/linuxserver/mariadb container_name: bookstack_db environment: PUID=1000 PGID=1000 MYSQL_ROOT_PASSWORD=DBROOTPASSWORD TZ=Europe/London MYSQL_DATABASE=bookstackapp MYSQL_USER=bookstack MYSQL_PASSWORD=DBPASSWORD volumes: bookstack_db:/config restart: unless-stopped volumes: bookstack_app: name: bookstack_app bookstack_db: name: bookstack_db Nginx Proxy Manager Docker Compose: version: "2.2" services: proxy-manager: image: jc21/nginx-proxy-manager:latest restart: unless-stopped ports: 80:80 81:81 443:443 volumes: nginxdata:/data nginxssl:/etc/letsencrypt volumes: nginxdata: name: nginxdata nginxssl: name: nginxssl TZ Lookup https://en.wikipedia.org/wiki/List_of... Bookstack Default Login: [email protected] : password #bookstack #docker #selfhosted #documentation #nginx #docker compose #ubuntu The below links are affiliate links. If you use one of the these links to make a purchase. My channel makes a small commission at no cost to you: Ensure your online privacy and security with ExpressVPN, my trusted VPN service. Click here to get started: https://stevestechstuff.net/recommend... Keep your passwords safe and accessible with NordPass, my go-to password manager. Start your secure journey here: https://stevestechstuff.net/recommend... Host your applications with ease on DigitalOcean, my preferred cloud infrastructure provider. Click here to get started: https://stevestechstuff.net/recommend...