File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ services:
77 image : postgres:10.12
88 restart : always
99 ports :
10- - 5433 :5432
10+ - 5432 :5432
1111 environment :
1212 POSTGRES_USER : simpleworklist
1313 POSTGRES_PASSWORD : simpleworklistpwd
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
33echo " simpleworklistpwd"
4- psql -h localhost -U simpleworklist -p 5433 -d simpleworklist
4+ psql -h localhost -U simpleworklist -p 5432 -d simpleworklist
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3+ export PORT=5000
34export MAIL_SMTP_HOST=mailhost
45export MAIL_SMTP_PORT=465
56export MAIL_SMTP_USERNAME=' mailuser'
Original file line number Diff line number Diff line change 11server :
2- port : 8080
2+ port : ${PORT}
33 error :
44 path : /fehler
55 compression :
66 enabled : false
77 min-response-size : 2048
88spring :
99 datasource :
10- url : jdbc:postgresql://localhost:5433 /simpleworklist
10+ url : jdbc:postgresql://localhost:5432 /simpleworklist
1111 username : simpleworklist
1212 password : simpleworklistpwd
1313 driverClassName : org.postgresql.Driver
You can’t perform that action at this time.
0 commit comments