Docker and Docker-Compose updates (#13)

* feat: updated docker-compose files to pull an image from docker hub
This commit is contained in:
Michael Green
2023-07-11 22:31:08 +10:00
committed by GitHub
parent 7f4b8a808f
commit f1842d21ff
4 changed files with 75 additions and 3 deletions

34
.github/workflows/BuildDockerOnTag.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
name: Build Docker Image on New Tag
on:
push:
tags:
- '*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64 #,linux/arm64
push: true
tags: gaseousgames/gaseousserver:latest,gaseousgames/gaseousserver:${{ github.ref_name}}