Troubleshooting

Bind mounts and permissions

The previous examples use simple bind mounts with the "-v" option. For integration and testing, bind mounts are an easy way to get started. But when running native Docker on Linux, be aware that the airlock user inside the container has the UID 1000 by default, which may not match your local user ID.

The UID of the airlock user will "leak" through to your local filesystem.

Run the following troubleshooting steps, in case you run into problems with file permissions:

copy
ls -l iam/instances/* # You may notice that the owner of the files is "1000" or a user other than your current user
# Use "chown" to change the owner and "chmod" to fix the file permissions
sudo chown -R 1000:0 iam/
# If changing the owner is not enough, fixing the permission modes with "chmod" might be necessary
sudo chmod -R u+rwX iam/

You may also use --user $(id -u) as part of docker run to use your user ID inside the container:

copy
docker run --rm --user $(id -u) -v "$(pwd)/iam:/home/airlock/iam" docker.io/ergon/airlock-iam:7.7  # <iam-cli-options>...

Be aware that when copying the configuration files to production, or any other machine or environment, you must change the owner back to "1000:0":

copy
COPY --chown=1000:0 ./iam/ /home/airlock/iam/
copy
# To fix problems with file permissions, you can add the "--user 0" option to a run command to get temporary root-level access inside the container
docker run --rm --entrypoint /bin/bash -it \
	-v "$(pwd)/iam/:/home/airlock/iam/" \
	--user 0 \
	docker.io/ergon/airlock-iam:7.7 \
	-c 'chown -R 1000:0 /home/airlock/iam/'