Generate docker run
command and options from running containers
docker-replay
can be most easily run using the official image build:
docker run --rm -ti \
-v /var/run/docker.sock:/var/run/docker.sock \
bcicen/docker-replay \
-p <container name or id>
pip install docker-replay
docker-replay -p <container name or id>
output:
docker run --env PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin \
--hostname test \
--interactive \
--tty \
--add-host google.com:127.0.0.1 \
--memory 128m \
--memory-swap 256m \
--memory-swappiness -1 \
--name test \
--expose 80/tcp \
--restart on-failure:0 \
--entrypoint "echo" \
alpine:latest \
hello
Option | Description |
---|---|
--debug, -d | enable debug output |
--pretty-print, -p | pretty-print output |