Set the UMASK in the entry script, added some brief step documentation, also Gitea action workflow attempt.
Build foundry vtt docker image and push to registry / docker (push) Failing after 9s

This commit is contained in:
Crovaxon
2024-06-16 01:56:48 +02:00
parent 27d756acaf
commit b053891128
3 changed files with 46 additions and 7 deletions
@@ -0,0 +1,32 @@
name: Build foundry vtt docker image and push to registry
run-name: ${{ gitea.actor }} is building image and pushing to registry
on:
push:
branches:
- 'main'
jobs:
docker:
runs-on: ubuntu-latest
steps:
# -
# name: Checkout
# uses: actions/checkout@v4
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: dockerregistry:5000
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASS }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: foundryvtt-docker:latest