Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(dockercompose): pin service version #10530

Merged
merged 1 commit into from
Jun 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(dockercompose): pin service version
  • Loading branch information
Guido Iaquinti committed Jun 28, 2022
commit 57b5d0ee0546af4df57f52bd8b6f13320bb0c578
4 changes: 2 additions & 2 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ services:
- object_storage

object_storage:
image: minio/minio
image: minio/minio:RELEASE.2022-06-25T15-50-16Z
restart: on-failure
ports:
- '19000:19000'
Expand All @@ -133,7 +133,7 @@ services:
command: -c 'mkdir -p /data/posthog && minio server --address ":19000" --console-address ":19001" /data' # create the 'posthog' bucket before starting the service

maildev:
image: maildev/maildev
image: maildev/maildev:2.0.5
restart: on-failure
ports:
- '1080:1080'
Expand Down