update.sh: precaution ask for deletion of dns_blocklists.cf if old foโฆ #639
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: Build mailcow Docker Images | |
on: | |
push: | |
branches: [ "master", "staging" ] | |
workflow_dispatch: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
docker_image_builds: | |
strategy: | |
matrix: | |
images: | |
- "acme-mailcow" | |
- "clamd-mailcow" | |
- "dockerapi-mailcow" | |
- "dovecot-mailcow" | |
- "netfilter-mailcow" | |
- "olefy-mailcow" | |
- "php-fpm-mailcow" | |
- "postfix-mailcow" | |
- "rspamd-mailcow" | |
- "sogo-mailcow" | |
- "solr-mailcow" | |
- "unbound-mailcow" | |
- "watchdog-mailcow" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Docker | |
run: | | |
curl -sSL https://get.docker.com/ | CHANNEL=stable sudo sh | |
sudo service docker start | |
- name: Prepair Image Builds | |
run: | | |
cp helper-scripts/docker-compose.override.yml.d/BUILD_FLAGS/docker-compose.override.yml docker-compose.override.yml | |
- name: Build Docker Images | |
run: | | |
docker compose build ${image} | |
env: | |
image: ${{ matrix.images }} |