mirror of
https://github.com/sstent/containers.git
synced 2025-12-06 08:01:51 +00:00
sync
This commit is contained in:
@@ -15,4 +15,14 @@ pipeline:
|
||||
dockerfile: gitea/Dockerfile
|
||||
when:
|
||||
path: 'gitea/*'
|
||||
publish_gitea_gchr:
|
||||
image: plugins/docker
|
||||
repo: gchr.io/gitea
|
||||
registry: ghcr.io
|
||||
username: sstent
|
||||
password: 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
|
||||
context: gitea/
|
||||
dockerfile: gitea/Dockerfile
|
||||
when:
|
||||
path: 'gitea/*'
|
||||
...
|
||||
|
||||
52
.github/workflows/dante.yml
vendored
Normal file
52
.github/workflows/dante.yml
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
paths:
|
||||
- 'dante/*'
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
-
|
||||
name: Log into registry
|
||||
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Build and push WG
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: dante/
|
||||
platforms: linux/arm/v7
|
||||
push: true
|
||||
file: dante/Dockerfile.wireguard
|
||||
tags: ghcr.io/sstent/dante-wg:latest
|
||||
build-args: |
|
||||
RELEASE=v0.3.5
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: dante/
|
||||
platforms: linux/arm/v7
|
||||
push: true
|
||||
file: dante/Dockerfile.openvpn
|
||||
tags: ghcr.io/sstent/dante:latest
|
||||
build-args: |
|
||||
RELEASE=v0.3.5
|
||||
|
||||
38
.github/workflows/portfwd.yml
vendored
Normal file
38
.github/workflows/portfwd.yml
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
paths:
|
||||
- 'portfwd/*'
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
-
|
||||
name: Log into registry
|
||||
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: portfwd/
|
||||
platforms: linux/arm/v7
|
||||
push: true
|
||||
tags: ghcr.io/sstent/portfwd:latest
|
||||
|
||||
40
.github/workflows/rsync.yml
vendored
Normal file
40
.github/workflows/rsync.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
paths:
|
||||
- 'rsync/*'
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
-
|
||||
name: Log into registry
|
||||
uses: docker/login-action@28218f9b04b4f3f62068d7b6ce6ca5b26e35336c
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v2
|
||||
with:
|
||||
context: rsync/
|
||||
platforms: linux/arm/v7
|
||||
push: true
|
||||
tags: ghcr.io/sstent/rsync:latest
|
||||
build-args: |
|
||||
RELEASE=v0.3.5
|
||||
|
||||
Reference in New Issue
Block a user