Compare commits
2 Commits
07ec53acd7
...
91ca3254a7
Author | SHA1 | Date | |
---|---|---|---|
91ca3254a7 | |||
a65265af49 |
31
.github/workflows/docker.yaml
vendored
Normal file
31
.github/workflows/docker.yaml
vendored
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
name: Build and Push Docker Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
|
- name: Log in to Docker registry
|
||||||
|
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login git.jabuxas.xyz -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
|
||||||
|
|
||||||
|
- name: Build and push Docker image
|
||||||
|
run: |
|
||||||
|
docker build -t git.jabuxas.xyz/jabuxas/abyss:latest .
|
||||||
|
docker push git.jabuxas.xyz/jabuxas/abyss:latest
|
||||||
|
|
||||||
|
- name: Log out of Docker registry
|
||||||
|
run: docker logout git.jabuxas.xyz
|
@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
paste:
|
paste:
|
||||||
build: .
|
image: git.jabuxas.xyz/jabuxas/abyss:latest
|
||||||
ports:
|
ports:
|
||||||
- "58080:8999"
|
- "58080:8999"
|
||||||
volumes:
|
volumes:
|
||||||
|
Loading…
Reference in New Issue
Block a user