mirror of
https://github.com/rjNemo/docker_examples
synced 2026-06-06 02:26:45 +00:00
22 lines
312 B
Markdown
22 lines
312 B
Markdown
# 🐳 Docker examples
|
|
|
|
`Dockerfile` examples for:
|
|
|
|
- [Elixir](./elixir)
|
|
- [Go](./go)
|
|
- [Kotlin](./kotlin)
|
|
- [Node.js](./node)
|
|
- [Python](./python)
|
|
- [React](./react)
|
|
|
|
## 👷 Build a container
|
|
|
|
```sh
|
|
docker build -t $APPNAME:$VERSION .
|
|
```
|
|
|
|
## 🏃 Run a container
|
|
|
|
```sh
|
|
docker run --rm $APPNAME:$VERSION
|
|
```
|