Skip to content

Commit

Permalink
Fix docker-compose issue and tag autoheal to alpine version for repro…
Browse files Browse the repository at this point in the history
…ducable builds
  • Loading branch information
djanderson committed Jun 6, 2019
1 parent c24646c commit b4212de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,13 @@ services:
# https://github.com/moby/moby/issues/28400
# https://github.com/willfarrell/docker-autoheal
autoheal:
image: alpine
image: smsntia/autoheal:${DOCKER_TAG} # DOCKER_TAG will always be 'latest' for GitHub source
restart: always
depends_on:
- api
build:
context: .
dockerfile: docker/Dockerfile-autoheal
image: smsntia/autoheal:${DOCKER_TAG} # DOCKER_TAG will always be 'latest' for GitHub source
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./entrypoints/autoheal_entrypoint.sh:/entrypoints/autoheal_entrypoint.sh:ro
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile-autoheal
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM alpine
FROM alpine:3.9

RUN apk add --no-cache jq curl

0 comments on commit b4212de

Please sign in to comment.