We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
About docker.
When you create user inside docker container it is good to determine UID and GID Like
RUN groupadd -r -g 5055 raccoon && useradd -r -u 5055 -g raccoon raccoon USER raccoon ENTRYPOINT ["raccoon"]
and then you can run it like
mkdir -p /srv/raccoon/ chown -R 5055:5055 /srv/raccoon/ docker run --rm --name raccoon -v /srv/raccoon:/home/raccoon evyatarmeged/raccoon:latest example.com -o /home/raccoon
Also you can connect autobuild on docker hub. like
The text was updated successfully, but these errors were encountered:
Hey, Thank you for the suggestion. If you want to, you can open a PR and I'll review it and approve 🦝
Sorry, something went wrong.
Update Dockerfile
f42585d
According to evyatarmeged#39
No branches or pull requests
About docker.
When you create user inside docker container it is good to determine UID and GID
Like
and then you can run it like
Also you can connect autobuild on docker hub.
like
The text was updated successfully, but these errors were encountered: