mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
refactored all to dev
This commit is contained in:
@@ -12,3 +12,15 @@ BookStack is a self-hosted wiki platform for organizing and storing documentatio
|
||||
- **Documentation:** [Docs](https://www.bookstackapp.com/docs/)
|
||||
- **Reverse Proxy Port:** `8080`
|
||||
|
||||
## Notes
|
||||
|
||||
### APP_KEY
|
||||
|
||||
Generate an APP_KEY: echo -n "base64:"$(openssl rand -base64 32)
|
||||
|
||||
### Default Password
|
||||
|
||||
* Username/Email: admin@admin.com
|
||||
* Password: password
|
||||
|
||||
After logging in, go to Settings > My Account to update the password (and email if desired). This prevents unauthorized access.
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
# minio
|
||||
|
||||
## Overview
|
||||
Docker Hub: https://hub.docker.com/r/minio/minio/tags
|
||||
Project: https://min.io/
|
||||
Proxy Port: 9001
|
||||
|
||||
@@ -1,13 +0,0 @@
|
||||
services:
|
||||
minio:
|
||||
image: ${MINIO_IMAGE:-quay.io/minio/minio}
|
||||
restart: unless-stopped
|
||||
command: server --console-address ":9001" /data
|
||||
environment:
|
||||
- MINIO_ROOT_USER=${MINIO_ROOT_USER:-administrator}
|
||||
- MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD:-01234567890123456}
|
||||
- MINIO_SERVER_URL=${MINIO_SERVER_URL:-https://s3.example.com}
|
||||
- MINIO_BROWSER_REDIRECT_URL=${MINIO_BROWSER_REDIRECT_URL:-https://console.s3.example.com}
|
||||
- CONSOLE_SECURE_TLS_REDIRECT=${MINIO_CONSOLE_SECURE_TLS_REDIRECT:-off}
|
||||
volumes:
|
||||
- ${VOL_PATH:-./data/}/minio:/data
|
||||
@@ -1,9 +0,0 @@
|
||||
|
||||
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
|
||||
VOL_PATH=./data/ #HELP: volpath
|
||||
MINIO_IMAGE=quay.io/minio/minio:latest
|
||||
MINIO_ROOT_USER=administrator
|
||||
MINIO_ROOT_PASSWORD=01234567890123456
|
||||
MINIO_SERVER_URL=https://s3.example.com
|
||||
MINIO_BROWSER_REDIRECT_URL=https://console.s3.example.com
|
||||
MINO_CONSOLE_SECURE_TLS_REDIRECT=off
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user