You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't found in docker documentation any explanations on how to configure eXistDB security. Would it be possible to have clear instructions about how to prevent unauthentified users to browse and explore xml files via the dashboard ?
I already have this DockerFile :
FROM existdb/existdb:5.3.1
RUN [ "java", "org.exist.start.Main", "client", "--no-gui", "-l", "-u", "admin", "-P", "", "-x", "sm:passwd('admin', 'mypassword')" ]
I haven't found in docker documentation any explanations on how to configure eXistDB security. Would it be possible to have clear instructions about how to prevent unauthentified users to browse and explore xml files via the dashboard ?
I already have this DockerFile :
FROM existdb/existdb:5.3.1
RUN [ "java", "org.exist.start.Main", "client", "--no-gui", "-l", "-u", "admin", "-P", "", "-x", "sm:passwd('admin', 'mypassword')" ]
And this docker-compose :
services:
exist:
build:
context: ./exist/
ports:
...
networks:
- exist_network
volumes:
- exist_data:/exist/data
- exist_config:/exist/config
restart: always
volumes:
exist_data:
exist_config:
networks:
exist_network:
driver: bridge
Thanks for your help.
The text was updated successfully, but these errors were encountered: