Ecosyste.ms: Awesome
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: about 2 months ago
JSON representation
Dockerfile example
- Host: GitHub
- URL: https://github.com/wasabina67/dockerfile-example
- Owner: wasabina67
- License: mit
- Created: 2024-06-24T14:18:04.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-25T04:08:15.000Z (7 months ago)
- Last Synced: 2024-06-25T17:29:50.952Z (7 months ago)
- Topics: dockerfile, ubuntu
- Language: Dockerfile
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```