-
Notifications
You must be signed in to change notification settings - Fork 1
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 #3 from xgaia/wip
upgrade to askomics 19.01.3
- Loading branch information
Showing
5 changed files
with
21 additions
and
66 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ services: | |
- docker | ||
install: | ||
- docker build -t askomics-ie . | ||
- docker run -d -p 6543:6543 askomics-ie | ||
- docker run -d -p 6543:6543 -p 8890:8890 -e ASKO_files_dir='/tmp/askomics-ie' -e ASKO_database_path='/tmp/askomics-ie/database.db' -e ASKO_load_url='http://localhost:6543' -e SPARQL_UPDATE='true' -e GALAXY_USER_NAME='jdoe' -e GALAXY_USER_EMAIL='[email protected]' -e ASKOMICS_API_KEY='jdoe' askomics-ie | ||
before_script: | ||
- sleep 1m | ||
script: | ||
|
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,23 +1,23 @@ | ||
FROM askomics/virtuoso | ||
FROM askomics/virtuoso:7.2.5.1 | ||
MAINTAINER Xavier Garnier '[email protected]' | ||
|
||
|
||
# Environment variables | ||
ENV ASKOMICS="https://github.com/askomics/askomics.git" \ | ||
ENV ASKOMICS_GIT_URL="https://github.com/askomics/askomics.git" \ | ||
ASKOMICS_DIR="/usr/local/askomics" \ | ||
ASKOMICS_VERSION="17.12" \ | ||
ASKOMICS_GIT_VERSION="19.01.3" \ | ||
SPARQL_UPDATE=true | ||
|
||
# Copy files | ||
COPY monitor_traffic.sh /monitor_traffic.sh | ||
COPY start.sh /start.sh | ||
COPY dump.template.nq /dump.template.nq | ||
|
||
# Install prerequisites, clone repository and install | ||
RUN apk add --update bash make gcc g++ zlib-dev libzip-dev bzip2-dev xz-dev git python3 python3-dev nodejs nodejs-npm wget && \ | ||
git clone ${ASKOMICS} ${ASKOMICS_DIR} && \ | ||
RUN apk update && \ | ||
apk del openssl openssl-dev && \ | ||
apk add bash make gcc g++ zlib-dev libzip-dev bzip2-dev xz-dev git python3 python3-dev nodejs nodejs-npm wget openldap-dev linux-headers sqlite && \ | ||
git clone ${ASKOMICS_GIT_URL} ${ASKOMICS_DIR} && \ | ||
cd ${ASKOMICS_DIR} && \ | ||
git checkout -b ${ASKOMICS_VERSION} origin/${ASKOMICS_VERSION} && \ | ||
git checkout ${ASKOMICS_GIT_VERSION} && \ | ||
npm install gulp -g && \ | ||
npm install --production && \ | ||
chmod +x startAskomics.sh && \ | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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