GitXplorerGitXplorer
p

docker-compose-actions-workflow

public
292 stars
93 forks
1 issues

Commits

List of commits on branch master.
Unverified
a76a629801e27e2c3c43ec00b1edbaa102505891

Update readme

ppeter-evans committed 4 years ago
Unverified
5e29e39126e9e3d03ee11858d3c577725af9d90f

Update readme

ppeter-evans committed 4 years ago
Unverified
c2d22d3f2220d7828b4c4d97b851bad926541fb5

Update README

ppeter-evans committed 5 years ago
Unverified
c047b5e2335df61f3235c1f9ed44d4858f08631f

Update to checkout v2

ppeter-evans committed 5 years ago
Unverified
b73372b2c3107b1334ff55247f144ada3dd49f13

Add github actions badge

ppeter-evans committed 5 years ago
Unverified
a00e1e40cf443ff3107e2f8bc447f9d745ec1cfe

Update workflow name

ppeter-evans committed 5 years ago

README

The README file for this repository.

docker-compose-actions-workflow

Actions Status

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