Skip to content

dev: more doc work

dev: more doc work #15

Workflow file for this run

name: Container (Docker)
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout Repository
uses: actions/checkout@v3
- id: setup
name: Setup Toolchain
uses: docker/setup-buildx-action@v2
- id: build
name: Build
uses: docker/build-push-action@v4
with:
context: .
file: ./Containerfile
push: false
load: true
tags: torrust-tracker:local
cache-from: type=gha
cache-to: type=gha,mode=max
- id: inspect
name: Inspect
run: docker image inspect torrust-tracker:local
- id: compose
name: Compose
run: docker compose build