.
continuous-integration/drone/push Build was killed
Details
continuous-integration/drone/push Build was killed
Details
This commit is contained in:
parent
5d95306f05
commit
586d92e765
12
README.md
12
README.md
|
@ -191,6 +191,18 @@ Secrets are revealed in a file named ~/env-stack during deployment. (keys etc ar
|
||||||
|
|
||||||
Email for lets encrypt certbot
|
Email for lets encrypt certbot
|
||||||
|
|
||||||
|
#### chat-admin-name
|
||||||
|
|
||||||
|
Name for chat admin user.
|
||||||
|
|
||||||
|
#### chat-admin-password
|
||||||
|
|
||||||
|
Password for chat admin user.
|
||||||
|
|
||||||
|
#### chat-admin-email
|
||||||
|
|
||||||
|
Email for chat admin user.
|
||||||
|
|
||||||
#### description
|
#### description
|
||||||
|
|
||||||
Description of the application.
|
Description of the application.
|
||||||
|
|
|
@ -300,6 +300,9 @@ services:
|
||||||
- ROOT_URL=https://${GIT_DOMAIN}/chat
|
- ROOT_URL=https://${GIT_DOMAIN}/chat
|
||||||
- PORT=3000
|
- PORT=3000
|
||||||
- MONGO_URL=mongodb://chat-mongo:27017/rocketchat
|
- MONGO_URL=mongodb://chat-mongo:27017/rocketchat
|
||||||
|
- ADMIN_USERNAME=${CHAT_ADMIN_USER}
|
||||||
|
- ADMIN_PASS=${CHAT_ADMIN_PASSWORD}
|
||||||
|
- ADMIN_EMAIL=${CHAT_ADMIN_EMAIL}
|
||||||
volumes:
|
volumes:
|
||||||
- chat-uploads:/app/uploads
|
- chat-uploads:/app/uploads
|
||||||
chat-mongo:
|
chat-mongo:
|
||||||
|
|
|
@ -15,4 +15,6 @@ publicSecrets = [
|
||||||
"sigyl-stack-name",
|
"sigyl-stack-name",
|
||||||
"ghost-mail-service",
|
"ghost-mail-service",
|
||||||
"ghost-mail-user",
|
"ghost-mail-user",
|
||||||
|
"chat-admin-name",
|
||||||
|
"chat-admin-email",
|
||||||
]
|
]
|
|
@ -5,4 +5,5 @@ secretSecrets = [
|
||||||
"guacamole-postgres-password",
|
"guacamole-postgres-password",
|
||||||
"ngrok-auth-token",
|
"ngrok-auth-token",
|
||||||
"ghost-mail-password",
|
"ghost-mail-password",
|
||||||
|
"chat-admin-password",
|
||||||
]
|
]
|
Reference in New Issue