File tree 2 files changed +16
-8
lines changed
2 files changed +16
-8
lines changed Original file line number Diff line number Diff line change
1
+ EGO_ACTIVE_PROFILES=
2
+ EGO_SERVER_PORT=
1
3
EGO_DB_HOST=
2
4
EGO_DB_PORT=
3
5
EGO_DB=
4
6
EGO_DB_USER=
5
7
EGO_DB_PASS=
6
8
EGO_SERVER_GOOGLE_CLIENT_IDS=
9
+ EGO_SERVER_FACEBOOK_APP_ID=
10
+ EGO_SERVER_FACEBOOK_SECRET=
7
11
8
12
# required for docker-compose config. This is the port that the api will be available on.
9
13
API_HOST_PORT=
Original file line number Diff line number Diff line change @@ -6,21 +6,25 @@ services:
6
6
ports :
7
7
- " $API_HOST_PORT:8081"
8
8
environment :
9
- EGO_DB_HOST=postgres
10
- EGO_DB_PORT=5432
11
- EGO_DB=ego
12
- EGO_DB_USER=postgres
13
- EGO_DB_PASS=password
14
- EGO_SERVER_GOOGLE_CLIENT_IDS=123456
9
+ - EGO_SERVER_PORT=8081
10
+ - EGO_DB_HOST=postgres
11
+ - EGO_DB_PORT=5432
12
+ - EGO_DB=ego
13
+ - EGO_DB_USER=postgres
14
+ - EGO_DB_PASS=password
15
+ - EGO_SERVER_GOOGLE_CLIENT_IDS=123456
16
+ - EGO_SERVER_FACEBOOK_APP_ID=123456
17
+ - EGO_SERVER_FACEBOOK_SECRET=123456
18
+ - EGO_ACTIVE_PROFILES=demo
15
19
depends_on :
16
20
- postgres
17
21
18
22
postgres :
19
23
restart : always
20
24
image : postgres:9.5
21
25
environment :
22
- POSTGRES_DB=ego
23
- POSTGRES_PASSWORD=password
26
+ - POSTGRES_DB=ego
27
+ - POSTGRES_PASSWORD=password
24
28
volumes :
25
29
- ./src/main/resources/schemas/psql-schema.sql:/docker-entrypoint-initdb.d/init.sql
26
30
expose :
You can’t perform that action at this time.
0 commit comments