Skip to content

Commit

Permalink
Work around dependabot not updating docker-compose (#1117)
Browse files Browse the repository at this point in the history
  • Loading branch information
relud authored Nov 15, 2024
1 parent 09c2034 commit d829db9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ services:
# https://cloud.google.com/sdk/docs/downloads-docker
# official pubsub emulator
pubsub:
# also available as google/cloud-sdk:<version>-emulators
image: gcr.io/google.com/cloudsdktool/google-cloud-cli:463.0.0-emulators
build:
context: docker/images/pubsub-emulator
image: local/antenna-pubsub-emulator
command:
- gcloud
- beta
Expand All @@ -83,7 +84,9 @@ services:
# https://hub.docker.com/r/kamon/grafana_graphite/
# username: admin, password: admin
statsd:
image: kamon/grafana_graphite
build:
context: docker/images/grafana
image: local/antenna-grafana
ports:
- "${EXPOSE_GRAFANA_PORT:-9000}:3000"

Expand Down
3 changes: 3 additions & 0 deletions docker/images/grafana/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Define this image outside of docker-compose.yml so that it gets dependabot updates
FROM kamon/grafana_graphite:latest@sha256:fc7517f21a44ac22f6ddb9feb6707372013ebdfaf532bae9edbdc92e200e8ff7

3 changes: 3 additions & 0 deletions docker/images/pubsub-emulator/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Define this image outside of docker-compose.yml so that it gets dependabot updates
FROM gcr.io/google.com/cloudsdktool/google-cloud-cli:463.0.0-emulators@sha256:4a3ef96d0379a5bf94285e743902a4d7da7f191aac6a542464e096bc72585eaa
# also available as google/cloud-sdk:<version>-emulators

0 comments on commit d829db9

Please sign in to comment.