Update ghcr.io/home-assistant/home-assistant Docker tag to v2023.12.4 - autoclosed #158
Workflow file for this run
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 CI | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
# custom script for AdGuardHome because we need to disable resolved | |
# sudo required for github action | |
- run: | | |
cd adguardhome | |
docker-compose pull | |
sudo systemctl disable systemd-resolved.service | |
sudo systemctl stop systemd-resolved.service | |
docker-compose up -d | |
docker-compose down | |
sudo systemctl enable systemd-resolved.service | |
sudo systemctl start systemd-resolved.service | |
# don't do this when running locally with act because i can't find an ubuntu dind image | |
if: ${{ env.ACT == false }} | |
# test the rest of the containers | |
- run: | | |
docker-compose -f bazarr/docker-compose.yml up -d | |
docker-compose -f code-server/docker-compose.yml up -d | |
docker-compose -f czkawka/docker-compose.yml up -d | |
docker-compose -f dozzle/docker-compose.yml up -d | |
docker-compose -f homeassistant/docker-compose.yml up -d |