Skip to content

Commit

Permalink
Merge pull request #12 from espoon-voltti/fix-db-config
Browse files Browse the repository at this point in the history
fix db config
  • Loading branch information
Joosakur authored Nov 16, 2023
2 parents 306d5df + 45c4d95 commit d28cb6b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
volumes:
- db-data:/var/lib/postgresql/data
environment:
POSTGRES_DB: oppivelvollisuus_it
POSTGRES_DB: oppivelvollisuus
POSTGRES_USER: oppivelvollisuus
POSTGRES_PASSWORD: postgres

Expand All @@ -17,9 +17,9 @@ services:
ports:
- "6432:5432"
volumes:
- db-data:/var/lib/postgresql/data
- db-it-data:/var/lib/postgresql/data
environment:
POSTGRES_DB: oppivelvollisuus
POSTGRES_DB: oppivelvollisuus_it
POSTGRES_USER: oppivelvollisuus
POSTGRES_PASSWORD: postgres

Expand Down
1 change: 1 addition & 0 deletions service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ tasks.withType<Test> {
useJUnitPlatform()
testClassesDirs = sourceSets["test"].output.classesDirs
classpath = sourceSets["test"].runtimeClasspath
outputs.upToDateWhen { false }
}

tasks.getByName<Jar>("jar") {
Expand Down

0 comments on commit d28cb6b

Please sign in to comment.