-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wip! feat(symphony-ws): Add Dockerfile #1
base: develop
Are you sure you want to change the base?
Conversation
ENV WILDFLY_HOME /opt/jboss/wildfly | ||
ENV DEPLOY_DIR ${WILDFLY_HOME}/standalone/deployments/ | ||
|
||
ENV DATASOURCE_NAME ApplicationDS |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if symphony-ws requires a specific name here.
fi | ||
|
||
echo "=> Start Wildfly" | ||
$WILDFLY_HOME/bin/standalone.sh -b=0.0.0.0 -c standalone.xml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The readme mentions the standalone-full.xml
but unsure what the difference is
Just discovered this fork! Kudos 👏 Did you mean to bring this to our attention on the upstream? Or is this PR for internal review at @fabled-se ? / Ann på HaV |
We where looking into running this app inside Kubernetes, we are working a bit with Ocean Data and they wanted to know how hard it would be to host it. Is there an official interest in providing a dockerfile for the project, our interest is otherwise pretty low in trying to upstream, since the use-case of packaging and running this inside kubernetes seems pretty niche? |
No, this honestly isn't prioritised at our end. Regarding your pursuit of a setup with Kubernetes, my guess is that heap memory could become an issue for you since Symphony can be quite RAM intensive when working with large rasters. But I don't have a lot of experience with Kubernetes. I feel I should confess however, being the maintainer of this project, it occurs to me that regrettably part of the enclosed documentation is out of date. In particular |
Attempt to add a Dockerfile for the backend. This one compiles and starts the wildfly instance with the compiled
war
file. Currently it fails to connect to a database (because there is none)