|
|
|
@ -55,17 +55,17 @@ Variable | Usage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```shell
|
|
|
|
|
echo "CATCHALL_MAILBOX_PASSWORD=$(openssl rand -base64 18)
|
|
|
|
|
echo "CATCHALL_MAILBOX_PASSWORD='$(openssl rand -base64 18)'
|
|
|
|
|
CLIENT_CERT_EMAIL=user@example.org
|
|
|
|
|
CLIENT_CERT_PASSWORD=$(openssl rand -base64 18)
|
|
|
|
|
CLIENT_CERT_USERNAME="John Doe"
|
|
|
|
|
MYSQL_WEBDB_PASSWORD=$(openssl rand -base64 18)
|
|
|
|
|
CLIENT_CERT_PASSWORD='$(openssl rand -base64 18)'
|
|
|
|
|
CLIENT_CERT_USERNAME='John Doe'
|
|
|
|
|
MYSQL_WEBDB_PASSWORD='$(openssl rand -base64 18)'
|
|
|
|
|
MYSQL_WEBDB_USER=cacert_dev
|
|
|
|
|
MYSQL_CATS_PASSWORD=$(openssl rand -base64 18)
|
|
|
|
|
MYSQL_CATS_PASSWORD='$(openssl rand -base64 18)'
|
|
|
|
|
MYSQL_CATS_USER=cats
|
|
|
|
|
MYSQL_MGR_PASSWORD=$(openssl rand -base64 18)
|
|
|
|
|
MYSQL_MGR_PASSWORD='$(openssl rand -base64 18)'
|
|
|
|
|
MYSQL_MGR_USER=cacert_mgr
|
|
|
|
|
MYSQL_ROOT_PASSWORD=$(openssl rand -base64 18)" > .env
|
|
|
|
|
MYSQL_ROOT_PASSWORD='$(openssl rand -base64 18)'" | sed 's@/@_@g' > .env
|
|
|
|
|
./setup_test_ca.sh
|
|
|
|
|
docker-compose up
|
|
|
|
|
```
|
|
|
|
|