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
- Host: GitHub
- URL: https://github.com/wasabina67/dockerfile-example
- Owner: wasabina67
- License: mit
- Created: 2024-06-24T14:18:04.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-25T04:08:15.000Z (almost 2 years ago)
- Last Synced: 2025-03-25T18:45:45.305Z (about 1 year 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
```