Open jk89 opened 4 months ago
Same issue here, by looking at the Dockerfile it's trying to download a war
file from http://vowl.visualdataweb.org/downloads/webvowl_1.1.7.war but this URL is now returning an html
which is why, I guess, it not working.
@jk89 if you want to run it locally, you can change the Dockerfile to be
###########
# WebVOWL #
###########
# Use tomcat java 8 alpine as base image
FROM tomcat:9-jre8-alpine
# Build time arguments (WebVOWL version)
ARG version=1.1.7
# Download WebVOWL to tomcat webapps directory as root app
RUN rm -rf /usr/local/tomcat/webapps/* && \
wget -O /usr/local/tomcat/webapps/ROOT.war https://github.com/DrSnowbird/WebVOWL-docker/raw/master/webvowl_1.1.7.war
# Run default server
CMD ["catalina.sh", "run"]
Thank you @DrSnowbird for pushing the WAR file in your fork :)
I built a new Docker container and pushed it on docker hub, you can run the editor
version by running the following:
docker run --rm -it -p 8080:8000 jupyternaas/webvowl:editor
And then go on http://localhost:8080
Steps tried:
cd to/webowl/dir
docker build . -t webvowl:v1
docker-compose up -d
http://localhost:8080/
What I expected to happend:
Some usable web interface.
What actually occured:
Container error from docker logs: