-
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 #90 from softvis-research/development
New Release v1.2.0
- Loading branch information
Showing
1,113 changed files
with
9,369 additions
and
267,736 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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
version: "3" | ||
services: | ||
frontend: | ||
build: ui/ | ||
restart: always | ||
volumes: | ||
- data-gen:/var/www/html/ui/data-gen | ||
networks: | ||
- default | ||
depends_on: | ||
- backend | ||
backend: | ||
build: generator2/org.getaviz.generator/ | ||
restart: always | ||
volumes: | ||
- data-gen:/var/lib/jetty/data-gen | ||
networks: | ||
- default | ||
depends_on: | ||
- neo4j | ||
tests: | ||
build: integrationtests/ | ||
command: "/bin/wait-for-it.sh neo4j:7687 -s -t 30 -- mvn install" | ||
networks: | ||
- default | ||
depends_on: | ||
- neo4j | ||
- frontend | ||
- backend | ||
neo4j: | ||
image: neo4j:3.5.1 | ||
restart: always | ||
environment: | ||
NEO4J_AUTH: "none" | ||
networks: | ||
- default | ||
volumes: | ||
data-gen: | ||
|
||
networks: | ||
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
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,15 +1,7 @@ | ||
FROM ruby:2.4.1 | ||
RUN apt-get update \ | ||
&& apt-get install -y --no-install-recommends \ | ||
rails rake build-essential nodejs libmysqlclient-dev mysql-client\ | ||
&& rm -rf /var/lib/apt/lists/* | ||
RUN mkdir -p /usr/src/app | ||
FROM getaviz/evaluationserver-base:1.2.1 | ||
WORkDIR /usr/src/app/ | ||
COPY . . | ||
RUN gem update --system | ||
RUN gem install bundler && bundle install --jobs 20 --retry 5 # might be better? | ||
RUN gem install bundler | ||
RUN bundle install --jobs 20 --retry 5 && gem install bundler | ||
LABEL maintainer="[email protected]" \ | ||
version="1.0" | ||
EXPOSE 8081 | ||
#CMD ["bin", "docker_start"] |
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.