commented surfer docker build (#243) #95
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docker | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
dropbox: | |
name: Deploy Dropbox Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Publish Dropbox Docker Image | |
uses: openzim/docker-publish-action@v10 | |
with: | |
image-name: kiwix/dropbox | |
on-master: latest | |
restrict-to: kiwix/container-images | |
context: dropbox | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
mirrorbrain: | |
name: Deploy mirrorbrain Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Publish Docker Image | |
uses: openzim/docker-publish-action@v10 | |
with: | |
image-name: kiwix/mirrorbrain | |
on-master: latest | |
restrict-to: kiwix/container-images | |
context: mirrorbrain | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
matomologs: | |
name: Deploy matomo logs Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Publish Docker Image | |
uses: openzim/docker-publish-action@v10 | |
with: | |
image-name: kiwix/matomo-log-analytics | |
on-master: latest | |
restrict-to: kiwix/container-images | |
context: matomo-log-analytics | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
# surfer: | |
# name: Deploy Surfer Image | |
# runs-on: ubuntu-22.04 | |
# steps: | |
# - uses: actions/[email protected] | |
# - name: Publish Docker Image | |
# uses: openzim/docker-publish-action@v10 | |
# with: | |
# image-name: openzim/surfer | |
# on-master: latest | |
# restrict-to: kiwix/container-images | |
# context: surfer | |
# registries: ghcr.io | |
# credentials: | |
# GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
# GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
bittorrent-tracker: | |
name: Deploy BitTorrent Tracker Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Publish Docker Image | |
uses: openzim/docker-publish-action@v10 | |
with: | |
image-name: kiwix/bittorrent-tracker | |
on-master: latest | |
restrict-to: kiwix/container-images | |
context: bittorrent-tracker | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
matomo: | |
name: Deploy Matomo Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Publish Docker Image | |
uses: openzim/docker-publish-action@v10 | |
with: | |
image-name: kiwix/matomo | |
on-master: 4.15.1-fpm | |
restrict-to: kiwix/container-images | |
context: matomo | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} | |
netdata: | |
name: Deploy netdata Image | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Publish Docker Image | |
uses: openzim/docker-publish-action@v10 | |
with: | |
image-name: kiwix/netdata | |
on-master: latest | |
restrict-to: kiwix/container-images | |
context: netdata | |
registries: ghcr.io | |
credentials: | |
GHCRIO_USERNAME=${{ secrets.GHCR_USERNAME }} | |
GHCRIO_TOKEN=${{ secrets.GHCR_TOKEN }} |