Compare commits
2 Commits
4f08759e28
...
ea6cefe89f
Author | SHA1 | Date | |
---|---|---|---|
ea6cefe89f | |||
7045e6128c |
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/cports:latest .
|
||||||
|
docker push git.jabuxas.xyz/jabuxas/cports:latest
|
||||||
|
|
||||||
|
- name: Log out of Docker registry
|
||||||
|
run: docker logout git.jabuxas.xyz
|
@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
cports:
|
cports:
|
||||||
build: .
|
image: git.jabuxas.xyz/jabuxas/cports:latest
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
user: user
|
user: user
|
||||||
|
Loading…
Reference in New Issue
Block a user