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

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

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

dockerfile ubuntu

Last synced: 5 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
```