Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/wasabina67/dockerfile-example

Dockerfile example
https://github.com/wasabina67/dockerfile-example

dockerfile ubuntu

Last synced: about 2 months ago
JSON representation

Dockerfile example

Awesome Lists containing this project

README

        

# dockerfile-example
Dockerfile example

## Build

```bash
docker build -t my-ubuntu-img .
```

## Run

```bash
docker run -it --rm my-ubuntu-img
```

```bash
docker run -it --rm --name my-ubuntu-ctr my-ubuntu-img
```