Skip to content

Support customizable SYMBOL column #149

Support customizable SYMBOL column

Support customizable SYMBOL column #149

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Docker Image
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
docker:
runs-on: ubuntu-latest
services:
registry:
image: registry:2
ports:
- 5000:5000
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.6.1
with:
# network=host driver-opt needed to push to local registry
driver-opts: network=host
- name: Run compose
uses: isbang/compose-action@v2.0.1
with:
compose-file: "docker-compose.yaml"
down-flags: "--volumes"