docker-compose openAM y openDJ not found #595
-
following the guide https://github.com/OpenIdentityPlatform/OpenAM/wiki/How-to-Start-OpenAM-and-OpenDJ-in-Separate-Docker-Contaners It doesn't work, it gives the following errors: openidentityplatform-docker-opendj-1 | Configuring Directory Server ..... Stopping Directory Server ..... this my docker-compose services: opendj: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Seems there is an issue with user rights between the host machine and Docker container. Try to add opendj:
image: openidentityplatform/opendj:latest
hostname: opendj.example.com
user: root
ports:
- "1389:1389"
- "1636:1636"
- "4444:4444"
volumes:
- ./opendj/bootstrap/data/:/opt/opendj/bootstrap/data
- ./opendj/bootstrap/schema/:/opt/opendj/bootstrap/schema
- ./persistence/opendj:/opt/opendj/data
environment:
- BASE_DN=dc=openam,dc=openidentityplatform,dc=org |
Beta Was this translation helpful? Give feedback.
Seems there is an issue with user rights between the host machine and Docker container. Try to add
user: root
do thedocker-compose.yml
file and try again: