I am new to the docker world. I have to invoke a shell script that takes command line arguments through a docker container. Ex: My shell script looks like:
#
with this script in file.sh
file.sh
#!/bin/bash echo Your container args are: "$@"
and this Dockerfile
Dockerfile
FROM ubuntu:14.04 COPY ./file.sh / ENTRYPOINT ["/file.sh"]
you should be able to:
% docker build -t test . % docker run test hello world Your container args are: hello world