Created
May 2, 2022 15:19
-
-
Save dnburgess/39aff5986e6f72f14518b3e9efe70bbe to your computer and use it in GitHub Desktop.
example
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: | |
wiki: | |
image: ghcr.io/linuxserver/bookstack | |
container_name: wiki | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- APP_URL= | |
- DB_HOST=db | |
- DB_USER=user | |
- DB_PASS=password | |
- DB_DATABASE=app | |
- APP_DEFAULT_DARK_MODE=true | |
volumes: | |
- /path/to/config:/config | |
ports: | |
- 6999:80 | |
restart: unless-stopped | |
depends_on: | |
- hwikidb | |
db: | |
image: ghcr.io/linuxserver/mariadb | |
container_name: db | |
#command: --default-authentication-plugin=mysql_native_password | |
ports: | |
- 3306:3306 | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- MYSQL_ROOT_PASSWORD=password | |
- TZ=America/Denver | |
- MYSQL_DATABASE=app | |
- MYSQL_USER=user | |
- MYSQL_PASSWORD=password | |
volumes: | |
- /path/to/config:/config | |
restart: unless-stopped | |
phpmyadmin: | |
image: phpmyadmin/phpmyadmin | |
depends_on: | |
- db | |
environment: | |
- PMA_HOST=db | |
ports: | |
- 9632:80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment