.
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Giles Bradshaw 2020-04-30 12:28:08 +01:00
parent 5d95306f05
commit 586d92e765
4 changed files with 18 additions and 0 deletions

View File

@ -191,6 +191,18 @@ Secrets are revealed in a file named ~/env-stack during deployment. (keys etc ar
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 of the application.

View File

@ -300,6 +300,9 @@ services:
- ROOT_URL=https://${GIT_DOMAIN}/chat
- PORT=3000
- MONGO_URL=mongodb://chat-mongo:27017/rocketchat
- ADMIN_USERNAME=${CHAT_ADMIN_USER}
- ADMIN_PASS=${CHAT_ADMIN_PASSWORD}
- ADMIN_EMAIL=${CHAT_ADMIN_EMAIL}
volumes:
- chat-uploads:/app/uploads
chat-mongo:

View File

@ -15,4 +15,6 @@ publicSecrets = [
"sigyl-stack-name",
"ghost-mail-service",
"ghost-mail-user",
"chat-admin-name",
"chat-admin-email",
]

View File

@ -5,4 +5,5 @@ secretSecrets = [
"guacamole-postgres-password",
"ngrok-auth-token",
"ghost-mail-password",
"chat-admin-password",
]