python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
docker-compose, how to run bash commands after container has started, without overriding the CMD or ENTRYPOINT in the image docker is pulling in?
I just want to rename a few files, without overriding the commands inside the wordpress image that the docker is pulling in.
Inside the docker-compose.yml I tried using 'command' and 'entrypoint' to r...
Mladen
Votes: 0
Answers: 1
How to export parsed json variables in docker entrypoint.sh?
In AWS ECS, when SECRET is defined in the ECS task definition, the $SECRET variable ends up in the container as a json string.
SECRET={"secret1":"value1","secret2":"...
Aub_C
Votes: 0
Answers: 2
Docker: can a cmdline argument be appended to a shell built-in command args?
I want to create a docker image with a cmdline-specifiable exit code.
From this question, I learned that I must use exit as an argument to sh because it is a shell built-in command, not an executable:...
StoneThrow
Votes: 0
Answers: 2
docker-entrypoint-initdb.d/* files ignored on docker-compose first run
I try to setup a Postgresql db in my docker-compose and it worked as expected for a moment. But now, my migration sql scripts aren't runned anymore, even after a fresh new build (sudo docker-compose b...
Ticki
Votes: 0
Answers: 1