-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docker-compose with optional way to run the ship
- Loading branch information
1 parent
ec25ede
commit ec56f7e
Showing
3 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
ship { | ||
|
||
database.access.host = "postgres" | ||
|
||
// organizations { | ||
// values { | ||
// example = "An example org" | ||
// } | ||
// } | ||
|
||
// project-mapping { | ||
// "org/proj": "neworg/newproject" | ||
// } | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
server { | ||
listen 80; | ||
server_name localhost; | ||
resolver 127.0.0.11; | ||
|
||
location / { | ||
proxy_pass http://web:8000; | ||
} | ||
location /v1 { | ||
proxy_pass http://delta:8080; | ||
} | ||
location /blazegraph { | ||
proxy_pass http://blazegraph:9999; | ||
} | ||
location /elasticsearch/ { | ||
proxy_pass http://elasticsearch:9200/; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters