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

https://github.com/programmerqeu/docker-test

Learn more about docker with a living example prototype
https://github.com/programmerqeu/docker-test

Last synced: about 1 year ago
JSON representation

Learn more about docker with a living example prototype

Awesome Lists containing this project

README

          

# Docker test

## Custom Build
```
docker build -t dockertest .
```

## Run
```
docker run -t -i dockertest:latest /bin/bash
```

## Usage

It supports all the basic docker tasks:

- make build (build image)
- make run (run container's default cmd)
- make shell (run bash in container)
- make start (start container in daemon mode)
- make stop (stop the container)
- make rm (remove the container)
- make push (push container to registry, default is private registry)

Default task is to **build** the container using Dockerfile in the same
directory as is the Makefile.