Skip to content

Commit ebf4f79

Browse files
committed
* fixed #273 resort Issues, Milestones and Releases
* fixed #270 Update to Spring Framework for Spring-Boot 2.3.3 * fixed #268 update webjars * fixed #267 Update to Spring Security xyz for Spring-Boot 2.3.3 * fixed #266 Update to Spring Data Bom Neumann-SR3 for Spring-Boot 2.3.3 * fixed #264 setup travis-ci * fixed #263 setup github-ci * fixed #262 setup on my current Linux Machines * fixed #260 Compare pom.xml and others to bloodmoney spring-webapp * fixed #259 Update Spring-Boot to current Version 2.3.3
1 parent 663fcac commit ebf4f79

File tree

1 file changed

+23
-6
lines changed

1 file changed

+23
-6
lines changed

src/main/docker/docker-compose.yml

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,38 @@
22
version: '3.3'
33

44
services:
5-
6-
db:
7-
image: postgres:10.12
5+
simpleworklist_dbmaster:
6+
image: postgres:12.4
87
restart: always
8+
networks:
9+
- net
910
ports:
1011
- 5432:5432
1112
environment:
12-
POSTGRES_USER: simpleworklist
1313
POSTGRES_PASSWORD: simpleworklistpwd
14+
POSTGRES_USER: simpleworklist
1415
POSTGRES_DB: simpleworklist
1516
CHARSET: UTF8
1617
PGPORT: 5432
17-
18-
adminer:
18+
simpleworklist_dbref:
19+
image: postgres:12.4
20+
restart: always
21+
networks:
22+
- net
23+
ports:
24+
- 5464:5432
25+
environment:
26+
POSTGRES_PASSWORD: simpleworklistrefpwd
27+
POSTGRES_USER: simpleworklistref
28+
POSTGRES_DB: simpleworklistref
29+
CHARSET: UTF8
30+
PGPORT: 5432
31+
simpleworklist_adminer:
1932
image: adminer:4.7.4
2033
restart: always
34+
networks:
35+
- net
2136
ports:
2237
- 4000:8080
38+
networks:
39+
net:

0 commit comments

Comments
 (0)