Skip to content

Commit

Permalink
Merge 774e280 into 33c2e66
Browse files Browse the repository at this point in the history
  • Loading branch information
devus10 authored Jan 10, 2019
2 parents 33c2e66 + 774e280 commit 721793f
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 21 deletions.
22 changes: 13 additions & 9 deletions judge-d-server/compose-dependencies.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
postgres:
container_name: judge-d-postgres
image: postgres:9.5
ports:
- "5432:5432"
volumes:
- /var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
version: '3.7'

services:
postgres:
container_name: judge-d-postgres
image: postgres:9.5
ports:
- "5432:5432"
volumes:
- /var/lib/postgresql/data
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=judge_d
27 changes: 15 additions & 12 deletions judge-d-server/compose-judge-d.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
judge-d:
image: hltech/judge-d
ports:
- 8090:8090
environment:
- DB_CONNECTION_STRING=jdbc:postgresql://postgres:5432/judge_d
- DB_USERNAME=postgres
- DB_PASSWORD=postgres
- DB_DRIVER_CLASS=org.postgresql.Driver
- PACT_BROKER_URL=http://some-host/
external_links:
- postgres
version: '3.7'

services:
judge-d:
image: hltech/judge-d
ports:
- 8080:8080
environment:
- DB_CONNECTION_STRING=jdbc:postgresql://postgres:5432/judge_d
- DB_USERNAME=postgres
- DB_PASSWORD=postgres
- DB_DRIVER_CLASS=org.postgresql.Driver
- PACT_BROKER_URL=http://some-host/
external_links:
- postgres

0 comments on commit 721793f

Please sign in to comment.