Skip to content

Commit 7bd27f5

Browse files
authored
Merge pull request #1 from IBM/en
Add missing environment variables to env.example file
2 parents bd43dc0 + fc65337 commit 7bd27f5

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.env.example

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,35 @@ export REPO="backwork"
66
export BACKUP_LOCAL_PATHS="/etc /var"
77
export LOCAL_BACKUP_NUMBER=
88
export MINIMUM_FREE_SPACE=
9+
export SENTRY_DSN=
910

1011
export MYSQL_ROOT_PASSWORD=
1112
export MYSQL_DATABASE=
1213
export MYSQL_USER=
1314
export MYSQL_PASSWORD=
1415

16+
export PGHOST=
17+
export PGPORT=
18+
export PGDATABASE=
19+
export PGUSER=
20+
export PGPASSWORD=
21+
1522
export MONGO_BACKUP_USER=
1623
export MONGO_BACKUP_PASSWORD=
24+
1725
# MONGO_HOST
18-
export SENTRY_DSN=
1926
export SOFTLAYER_USER=
2027
export SOFTLAYER_API_KEY=
2128
export SOFTLAYER_DATACENTER=
2229
export SOFTLAYER_CONTAINER="backups"
2330
export SOFTLAYER_PATH=
2431

32+
export IBM_COS_INSTANCE_ID=
33+
export IBM_COS_ENDPOINT_URL=
34+
export IBM_COS_BUCKET=
35+
export IBM_COS_PATH=
36+
37+
2538
export MONGO_ADMIN_USER=$MONGO_BACKUP_USER
2639
export MONGO_ADMIN_PASSWORD="$MONGO_BACKUP_PASSWORD"
2740
export FORUM_MONGO_PASSWORD="$MONGO_BACKUP_PASSWORD"

docker-compose.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ services:
1414
- MYSQL_USER
1515
- MYSQL_PASSWORD
1616

17+
- PGHOST
18+
- PGPORT
19+
- PGDATABASE
20+
- PGUSER
21+
- PGPASSWORD
22+
1723
- MONGO_BACKUP_USER
1824
- MONGO_BACKUP_PASSWORD
1925
- MONGO_HOST=mongo

0 commit comments

Comments
 (0)