ayoinc / docker-compose-actions-workflow

GitHub Actions workflow example using Docker Compose to build and test a multi-container stack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-compose-actions-workflow

docker-compose-actions-workflow

This is a GitHub Actions workflow example to demonstrate building and testing a multi-container stack using docker-compose.

This sample is based on the Get started with Docker Compose documentation.

GitHub Actions Workflow

push.yml

name: Docker Compose Actions Workflow
on: push
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Build the stack
        run: docker-compose up -d
      - name: Test
        run: docker run --network container:webapp-frontend appropriate/curl -s --retry 10 --retry-connrefused http://localhost:5000/

You can browse a run for this example here.

For more about testing containers before release see Smoke Testing.

License

MIT

About

GitHub Actions workflow example using Docker Compose to build and test a multi-container stack

License:MIT License


Languages

Language:Python 68.3%Language:Dockerfile 31.7%