-
|
i am using proxmox LXC to run opencloud-compose. The log shows following error the user and grouid is 101000:101000 I also change the opencloud.yaml setting by addapting all insecure config parameter to false . Any hint how to handle the permissions ? Cheers |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
In the current init command, For the diff run, unset/blank those variables: docker compose run --rm \
-e ADMIN_PASSWORD= \
-e IDM_ADMIN_PASSWORD= \
opencloud opencloud init --diffor inside the container: ADMIN_PASSWORD= IDM_ADMIN_PASSWORD= opencloud init --diffDo not use force overwrite until you have backed up and reviewed the diff, because the existing config is exactly what you are trying to compare. |
Beta Was this translation helpful? Give feedback.
opencloud init --diffis probably seeing an admin password from the environment.In the current init command,
--diffand--admin-passwordare mutually exclusive, and the admin password option is also populated from env vars such asADMIN_PASSWORD/IDM_ADMIN_PASSWORD. So even if you did not type--admin-password, Docker Compose can still make it present.For the diff run, unset/blank those variables:
or inside the container:
Do not use force overwrite until you have backed up and reviewed the diff, because the existing conf…