Embarcadero / paserver-docker

Docker script for RAD Studio Linux deployment via PAServer
https://hub.docker.com/r/radstudio/pa-radserver
Other
34 stars 13 forks source link

How to enable the parameter -unrestricted? #1

Closed silvioprog closed 4 years ago

silvioprog commented 4 years ago

Hi.

On Linux, mostly applications uses their configuration file inside the /etc repository, however, the paserver-docker container doesn't allow to access other path levels since its -unrestricted parameter is not enabled.

Is there any chance to enable this parameter?

Edit: The PAServer always remove all files inside the destination binary directory, this way, there is no any chance even symbolic links, since they will be removed each build at all.

Thank you!

FMXExpress commented 4 years ago

Create your own Dockerfile like so:

FROM radstudio/paserver RUN apt-get update && apt-get install nano

And build it with whatever parameters you need: docker build . -t paserver-child

Or just build the original Dockerfile yourself with the parameters you need.

silvioprog commented 4 years ago

Thank you!