first commit

This commit is contained in:
Roger Sikorski 2021-05-15 09:07:36 +02:00
parent 8a4cf5dcba
commit 5b27dfe8d9
Signed by: RogerSik
GPG Key ID: 207958C85208EAC4
3 changed files with 53 additions and 1 deletions

29
.github/workflows/docker-publish.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Publish Docker Image
on:
push:
branches:
- main
schedule:
- cron: '0 7 * * SUN'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: rogersik/admin-helper:latest
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
# https://hub.docker.com/_/alpine
FROM alpine:latest
RUN apk update && \
apk add --no-cache nano mc micro rsync ncdu

View File

@ -1 +1,19 @@
# docker-admin-helper
# admin-helper Container
This image is builded to easier maintain unusually docker container tasks.
Installed tools:
* rsync
* mc
* nano
# An example execution
## Editing config files
```
docker run --rm \
-v "home-assistant_config:/opt/docker-volume/" \
-it \
-w /opt/docker-volume/ \
rogersik/admin-helper
```