Passare variabile a Docker
10-08-2022
Passare una variabile d'ambiente a uno script bash
DOCKER
10-08-2022
Passare una variabile d'ambiente a uno script bash
Dockerfile
FROM ubuntu
RUN apt update
RUN mkdir -p /tmp/script
COPY script.sh /tmp/script
WORKDIR /tmp/script
ENTRYPOINT ["bash", "./script.sh"]
File script.sh
#!/usr/bin/bash
echo "Hello $NOME"
Rendere eseguibile lo script
chmod +x script.sh
Per fare il build dell'immagine ed eseguire il container
docker image build . -t script
docker run -it -e NOME="Emilie" script ./script.sh