Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bcicen/docker-replay

Generate docker commands to rerun existing containers
https://github.com/bcicen/docker-replay

Last synced: 3 days ago
JSON representation

Generate docker commands to rerun existing containers

Awesome Lists containing this project

README

        

# docker-replay

[![PyPI version](https://badge.fury.io/py/docker-replay.svg)](https://badge.fury.io/py/docker-replay)

Generate `docker run` command and options from running containers

## Quickstart

`docker-replay` can be most easily run using the official image build:
```bash
docker run --rm -ti \
-v /var/run/docker.sock:/var/run/docker.sock \
bcicen/docker-replay \
-p
```

## Installing

```bash
pip install docker-replay
```

## Usage

```bash
docker-replay -p
```

output:
```bash
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
```

## Options

Option | Description
--- | ---
--debug, -d | enable debug output
--pretty-print, -p | pretty-print output