Add compose file

This commit is contained in:
simon987 2020-08-07 21:08:58 -04:00
parent 253ccd25d4
commit 72aa59591e
3 changed files with 15 additions and 3 deletions

3
.gitignore vendored
View File

@ -23,4 +23,5 @@
hs_err_pid*
.idea/
target/
target/
*.iml

13
docker-compose.yml Normal file
View File

@ -0,0 +1,13 @@
version: "3"
services:
mg_api:
image: simon987/music-graph-api
environment:
- "NEO4J_ADDR=localhost:7687"
- "PG_URL=localhost:5432/musicbrainz_db"
- "PG_USERNAME=musicbrainz"
- "PG_PASSWORD=musicbrainz"
mg_ui:
image: simon987/music-graph-ui
ports:
- 8080:80

View File

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4" />