-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from softvis-research/development
v1.3.0
- Loading branch information
Showing
269 changed files
with
14,754 additions
and
10,453 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 |
---|---|---|
@@ -1,4 +1,8 @@ | ||
*.komodoproject | ||
*/.idea | ||
*.iml | ||
ui/data/ | ||
|
||
\.idea/ | ||
generator2/org.getaviz.generator/.idea/ | ||
|
||
.idea/ |
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
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
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
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
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 |
---|---|---|
@@ -1,71 +1,68 @@ | ||
version: "3" | ||
version: '3' | ||
services: | ||
db: | ||
image: mysql:5.7 | ||
environment: | ||
MYSQL_ROOT_PASSWORD: dbpassword_for_user | ||
MYSQL_DATABASE: eval_server_development | ||
MYSQL_USER: db_username | ||
MYSQL_PASSWORD: dbpassword_for_user | ||
restart: always | ||
eval: | ||
build: evaluationserver | ||
restart: always | ||
env_file: evaluationserver/env | ||
command: "./bin/wait-for-it.sh db:3306 -s -t 30 -- ./bin/docker_start" | ||
#volumes: | ||
#- ./evaluationserver:/usr/src/app | ||
ports: | ||
- "8081:8081" | ||
depends_on: | ||
- db | ||
frontend: | ||
build: ui/ | ||
restart: always | ||
volumes: | ||
#- ./ui:/var/www/html/ui # uncomment only for ui development | ||
- data-gen:/var/www/html/ui/data-gen | ||
ports: | ||
- "8082:80" | ||
networks: | ||
- default | ||
depends_on: | ||
- backend | ||
backend: | ||
build: generator2/org.getaviz.generator/ | ||
restart: always | ||
volumes: | ||
- data-gen:/var/lib/jetty/data-gen | ||
#- ./generator2/org.getaviz.generator/target/org.getaviz.generator-1.0.0-SNAPSHOT.war:/var/lib/jetty/webapps/root.war # uncomment only for generator development | ||
#- ./generator2/org.getaviz.generator/settings.properties:/opt/config/settings.properties # uncomment only for generator development | ||
#- ./generator2/output:/var/lib/jetty/output/ # uncomment only for generator development | ||
#- ./generator2/logs:/var/lib/jetty/logs # uncomment only for generator development | ||
ports: | ||
- "8083:8080" | ||
networks: | ||
- default | ||
depends_on: | ||
- neo4j | ||
- volumes-provisioner | ||
neo4j: | ||
image: neo4j:3.5.1 | ||
restart: always | ||
ports: | ||
- "7474:7474" | ||
- "7687:7687" | ||
environment: | ||
NEO4J_AUTH: "none" | ||
networks: | ||
- default | ||
volumes-provisioner: | ||
image: hasnat/volumes-provisioner | ||
environment: | ||
PROVISION_DIRECTORIES: "100:101:0755:/var/data /var/data/data-gen/" | ||
volumes: | ||
- data-gen:/var/data | ||
db: | ||
image: mysql:5.7 | ||
environment: | ||
MYSQL_ROOT_PASSWORD: dbpassword_for_user | ||
MYSQL_DATABASE: eval_server_development | ||
MYSQL_USER: db_username | ||
MYSQL_PASSWORD: dbpassword_for_user | ||
restart: always | ||
eval: | ||
build: evaluationserver | ||
restart: always | ||
env_file: evaluationserver/env | ||
command: "./bin/wait-for-it.sh db:3306 -s -t 30 -- ./bin/docker_start" | ||
#volumes: | ||
#- ./evaluationserver:/usr/src/app | ||
ports: | ||
- "8081:8081" | ||
depends_on: | ||
- db | ||
frontend: | ||
build: ui/ | ||
restart: always | ||
volumes: | ||
#- ./ui:/var/www/html/ui # uncomment only for ui development | ||
- data-gen:/var/www/html/ui/data-gen | ||
ports: | ||
- "8082:80" | ||
networks: | ||
- default | ||
depends_on: | ||
- backend | ||
backend: | ||
build: generator2/org.getaviz.generator/ | ||
restart: always | ||
volumes: | ||
- data-gen:/var/lib/jetty/data-gen | ||
#- ./generator2/org.getaviz.generator/target/org.getaviz.generator-1.0.0-SNAPSHOT.war:/var/lib/jetty/webapps/root.war # uncomment only for generator development | ||
ports: | ||
- "8083:8080" | ||
networks: | ||
- default | ||
depends_on: | ||
- neo4j | ||
- volumes-provisioner | ||
neo4j: | ||
image: neo4j:3.5.1 | ||
restart: always | ||
ports: | ||
- "7474:7474" | ||
- "7687:7687" | ||
environment: | ||
NEO4J_AUTH: "none" | ||
networks: | ||
- default | ||
volumes-provisioner: | ||
image: hasnat/volumes-provisioner | ||
environment: | ||
PROVISION_DIRECTORIES: "100:101:0755:/var/data /var/data/data-gen/" | ||
volumes: | ||
- data-gen:/var/data | ||
volumes: | ||
data-gen: | ||
|
||
networks: | ||
default: | ||
driver: bridge | ||
default: | ||
driver: bridge |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.git | ||
.env | ||
.dockerignore | ||
.dockerignore | ||
*.sql |
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
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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
FROM getaviz/evaluationserver-base:1.2.1 | ||
FROM getaviz/evaluationserver-base:1.3.2 | ||
WORkDIR /usr/src/app/ | ||
COPY . . | ||
COPY Gemfile . | ||
COPY Gemfile.lock . | ||
RUN bundle install --jobs 20 --retry 5 && gem install bundler | ||
COPY . . | ||
LABEL maintainer="[email protected]" \ | ||
version="1.0" | ||
EXPOSE 8081 |
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
Oops, something went wrong.