diff --git a/Dockerfile b/Dockerfile index 95b54ca..9c0116d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,3 +8,4 @@ COPY target/${PLUGIN} ${RODA_HOME}/config/plugins/${PLUGIN}/ USER root RUN ${RODA_HOME}/config/plugins/${PLUGIN}/install_dependencies.sh USER ${RODA_USER} +RUN echo "core.plugins.external.certificates.opt-in=true" > /roda/config/roda-core.properties \ No newline at end of file diff --git a/README.md b/README.md index a8583b2..56659bf 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,11 @@ It includes: * Quick run instructions * README automatic generation instructions + +> In order to make it possible to see your creations, you must assure that you have these pre-requisites. + +- [Roda Standalone](https://github.com/keeps/roda/tree/master/deploys) (Use Standalone Development, don't open WUI in spring boot) + ## How to build and run To build execute `./build.sh`, this will run with the latest RODA version. @@ -20,7 +25,7 @@ The build script will compile the plugin and create a docker image with the base To run execute (roda-plugin-template should be replaced by the project folder name): ```shell -docker run -p 8080:8080 roda-plugin-template:latest +docker run --network="host" -p 8080:8080 roda-plugin-template:latest ``` Then open in your favorite browser [http://localhost:8080](http://localhost:8080).