docker-devops-helper/README.md
Roger Sikorski 17fbe6fb9c
All checks were successful
build / Dockerfile lint (push) Successful in 13s
build / build (push) Successful in 47s
removed unp from alpine; because it doesn't exist
2023-11-12 17:42:37 +01:00

29 lines
634 B
Markdown

# admin-helper Container
This image is builded to do easier maintaince tasks. Example editing config files (with some comfort).
Installed tools:
- all images (alpine and ubuntu)
- rsync
- mc
- nano
- ubuntu images
- unp
## Ubuntu and Alpine Images
We are providing Ubuntu and Alpine images. Ubuntu for tasks where Alpine maybe is not good at. [Example "kubectl cp" larger files](https://github.com/kubernetes/kubernetes/issues/115573)
# An example execution
## Editing config files
```
docker run --rm \
-v "home-assistant_config:/opt/docker-volume/" \
-it \
-w /opt/docker-volume/ \
rogersik/admin-helper
```