Skip to content

Commit

Permalink
fix: Add workaround for running gradle spotless plugin with jdk 16
Browse files Browse the repository at this point in the history
  • Loading branch information
connoratrug committed Jun 10, 2021
1 parent 5c905ec commit b15ffc0
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions docker-compose.yml
Expand Up @@ -3,21 +3,23 @@ services:
postgres:
image: postgres:13-alpine
environment:
- POSTGRES_USER=molgenis
- POSTGRES_PASSWORD=molgenis
- POSTGRES_DB=molgenis
- POSTGRES_USER=emx2
- POSTGRES_PASSWORD=emx2
- POSTGRES_DB=emx2
expose:
- "5432"
ports:
- "5432:5432"
volumes:
- ./psql_data:/var/lib/postgresql/data
command: -c 'shared_buffers=256MB' -c 'max_locks_per_transaction=1024'
emx2:
image: molgenis/molgenis-emx2
environment:
- MOLGENIS_POSTGRES_URI=jdbc:postgresql://postgres/molgenis
ports:
- "8080:8080"
depends_on:
- postgres
restart: on-failure
# emx2:
# image: molgenis/molgenis-emx2
# environment:
# - MOLGENIS_POSTGRES_URI=jdbc:postgresql://postgres/molgenis
# ports:
# - "8080:8080"
# depends_on:
# - postgres
# restart: on-failure

0 comments on commit b15ffc0

Please sign in to comment.