Add readme.

master
Icedream 2017-03-09 01:33:55 +01:00
parent 25b399ddfd
commit 2564bae79f
Signed by: icedream
GPG Key ID: 1573F6D8EFE4D0CF
1 changed files with 24 additions and 0 deletions

24
README.md Normal file
View File

@ -0,0 +1,24 @@
# Composerize Docker image
## What is Composerize?
[Composerize](https://github.com/magicmark/composerize) is a utility that converts any given `docker run` command to its equivalent Docker Compose v2 configuration.
## Usage
To run a container and expose the website at port 8080, run this command:
```sh
docker run -p "8080:8080" --rm icedream/composerize
```
Or use this Docker Compose YAML configuration (`docker-compose.yml`) file:
```yaml
version: '2'
services:
composerize:
image: icedream/composerize
ports:
- '8080:8080'
```