Created
June 30, 2021 09:41
-
-
Save girishaiocdawacs/c9c4625d57b9851e526c0a4f2cb57a41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2" | |
services: | |
bookstack: | |
image: ghcr.io/linuxserver/bookstack | |
container_name: bookstack | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- APP_URL= | |
- DB_HOST=bookstack_db | |
- DB_USER=bookstack | |
- DB_PASS=bookstack | |
- DB_DATABASE=bookstackapp | |
- MAIL_DRIVER=smtp | |
- MAIL_HOST=smtp.gmail.com | |
- MAIL_PORT=587 | |
- MAIL_ENCRYPTION=tls | |
- [email protected] | |
- MAIL_PASSWORD=Bala@123 | |
- [email protected] | |
- MAIL_FROM_NAME=AWACS BookStack | |
volumes: | |
- /path/to/data:/config | |
ports: | |
- 80:80 | |
expose: | |
- 80 | |
restart: unless-stopped | |
depends_on: | |
- bookstack_db | |
bookstack_db: | |
image: ghcr.io/linuxserver/mariadb | |
container_name: bookstack_db | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- MYSQL_ROOT_PASSWORD=awacs123 | |
- TZ=Asia/Kolkata | |
- MYSQL_DATABASE=bookstackapp | |
- MYSQL_USER=bookstack | |
- MYSQL_PASSWORD=bookstack | |
volumes: | |
- /path/to/data:/config | |
restart: unless-stopped | |
networks: | |
overlays: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment