How to add –init parameter to AWS ECS Task
I have a Docker image that uses Playwright and xvfb. When I run it locally, I run docker run --init -it <image_id>
(per this SO answer). Without the --init
param, the container will run but will not execute the entrypoint, instead the container just hangs without error.