skip to Main Content

How to convert Docker run flags into a Dockerfile

I have this docker run command: docker run -d --name node1 --network host -v $(pwd)/genesis.json:/opt/besu/genesis.json -v $(pwd)/keys/validator1/key:/opt/besu/key --env-file $(pwd)/common.env --env-file $(pwd)/bootnodes.env node1:latest This works fine. But I want to put the flags inside the Dockerfile, to just run docker run…

VIEW QUESTION

Create Selenoid Image With DockerFile

I need to publish a Dockerfile that contains https://aerokube.com/selenoid. This has to be a Dockerfile so I can publish it to our container registry which will be used as a service container as part of the pipeline/text execution https://learn.microsoft.com/en-us/azure/devops/pipelines/process/service-containers?view=azure-devops&tabs=yaml Here…

VIEW QUESTION
Back To Top
Search