init fork
This commit is contained in:
parent
ac534da1e6
commit
13d80089e9
33
.gitea/workflows/docker.yml
Normal file
33
.gitea/workflows/docker.yml
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
name: Docker
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ "dev" ]
|
||||||
|
schedule:
|
||||||
|
- cron: '@weekly'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Get current date
|
||||||
|
id: date
|
||||||
|
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
|
||||||
|
- uses: https://github.com/actions/checkout@v4
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: https://github.com/docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
config-inline: |
|
||||||
|
[registry."git.schreifuchs.ch"]
|
||||||
|
http = true
|
||||||
|
insecure = true
|
||||||
|
- name: login
|
||||||
|
run: docker login -u schreifuchs -p ${{ secrets.REGISTRY_TOKEN }} git.schreifuchs.ch
|
||||||
|
- run: echo "NOW=$(date +'%Y-%m-%dT%H:%M:%S')"
|
||||||
|
- name: Build and push Docker image
|
||||||
|
uses: https://github.com/docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: ./Dockerfile
|
||||||
|
push: true
|
||||||
|
tags: "git.schreifuchs.ch/schreifuchs/webmin-samba-docker:${{ steps.date.outputs.date }},git.schreifuchs.ch/schreifuchs/webmin-samba-docker:latest"
|
@ -1,4 +1,6 @@
|
|||||||
# webmin-samba-docker
|
# webmin-samba-docker
|
||||||
|
> this is a Fork of [piersonjarvis/webmin-samba-docker](https://github.com/piersonjarvis/webmin-samba-docker)
|
||||||
|
|
||||||
Docker container based on ubuntu running a samba server, with a webmin webui.
|
Docker container based on ubuntu running a samba server, with a webmin webui.
|
||||||
|
|
||||||
This container was build with simplisity in mind.
|
This container was build with simplisity in mind.
|
||||||
|
Loading…
Reference in New Issue
Block a user