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
So I'd like to know is there is a way, to pass arguments to entrypoint script inside docker image?
My usecase.
I have my Dockerfile ending line this
... ENTRYPOINT ["/bin/bash", "entrypoint.sh"]
entrypoint.sh - takes several arguments to make its work.
entrypoint.sh
I've expected that somehow I could pass script's arguments as I would do in conventional docker container run
docker container run
docker container run [OPTIONS] IMAGE [COMMAND] [ARG...]
docker container run -v ... my_image:latest --script_args1=value1
But it seems it is impossible?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
So I'd like to know is there is a way, to pass arguments to entrypoint script inside docker image?
My usecase.
I have my Dockerfile ending line this
entrypoint.sh
- takes several arguments to make its work.I've expected that somehow I could pass script's arguments as I would do in conventional
docker container run
But it seems it is impossible?
The text was updated successfully, but these errors were encountered: