Skip to content

Commit 59a1580

Browse files
committed
Fixed #79, Fixed #80, Fixed #81
1 parent 18c5251 commit 59a1580

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: '3.3'
44
services:
55

66
db:
7-
image: postgres:11.6
7+
image: postgres:10.12
88
restart: always
99
ports:
1010
- 5433:5432
@@ -13,7 +13,7 @@ services:
1313
POSTGRES_PASSWORD: simpleworklistpwd
1414
POSTGRES_DB: simpleworklist
1515
CHARSET: UTF8
16-
PGPORT: 5433
16+
PGPORT: 5432
1717

1818
adminer:
1919
image: adminer:4.7.4

etc/TODO.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Fixed #32, Fixed #36, Fixed #89, Fixed #83, Fixed #84, Fixed #85, Fixed #88, Fi
1111

1212

1313
# 2.3.8
14-
Fixed #79, Fixed #80
14+
Fixed #79, Fixed #80, Fixed #81

psql.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env bash
2+
3+
echo "simpleworklistpwd"
4+
psql -h localhost -U simpleworklist -p 5433 -d simpleworklist

src/main/resources/application.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ org:
7878
spring:
7979
profiles: default
8080
datasource:
81-
url: jdbc:postgresql://localhost:5433/simpleworklist_default
81+
url: jdbc:postgresql://localhost:5433/simpleworklist
8282
---
8383
spring:
8484
profiles: developing

0 commit comments

Comments
 (0)