Skip to content

fix things and add cockpit docs #6

fix things and add cockpit docs

fix things and add cockpit docs #6

Workflow file for this run

# github workflow that runs a docker build and pushes it
name: Build
on:
push:
branches: ["main"]
jobs:
slack:
name: Build Litehouse
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: ghcr.io/arlyon/litehouse:latest
file: Dockerfile
target: litehouse
worker:
name: Build Cockpit
timeout-minutes: 15
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
tags: ghcr.io/arlyon/cockpit:latest
file: Dockerfile
target: cockpit