Test docker image #49
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: Test docker image | |
on: | |
# Test every Tuesday at at 8:35 AM UTC | |
schedule: | |
- cron: "35 8 * * 2" | |
# Test when push to main branch | |
push: | |
branches: | |
- master | |
- develop | |
# For all PRs to the main branch run the tests | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setting up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Cache Docker layers | |
uses: actions/cache@v4 | |
with: | |
path: /tmp/.buildx-cache | |
key: ${{ runner.os }}-buildx-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-buildx- | |
- name: Build test | |
id: docker_test | |
uses: docker/build-push-action@v5 | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
cache-from: type=local,src=/tmp/.buildx-cache | |
cache-to: type=local,dest=/tmp/.buildx-cache | |
context: ./docker/wordpress | |
file: ./docker/wordpress/Dockerfile | |
pull: true | |
load: true | |
tags: wordpress_app | |
- name: Setup docker-compose | |
run: cp ./.env.example ./.env | |
- name: Run with docker | |
run: | | |
docker compose up -d | |
sleep 20 | |
docker compose ps | |
docker compose exec -T wordpress wp --info | |
curl --fail -s http://127.0.0.1/wp-admin/install.php || exit 1 | |
docker compose down |