From aa5b99dc1153db2faf02ad80f4e3287537f19190 Mon Sep 17 00:00:00 2001 From: David Kleingeld Date: Fri, 19 Sep 2025 16:12:49 +0200 Subject: [PATCH] Fully qualify images in Docker Compose (#38496) This enables podman-compose (easier to install and run on linux) as drop in replacement for docker-compose Release Notes: - N/A --- compose.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compose.yml b/compose.yml index d0d9bac425356687bfb33efab9ee24e76d1b30a0..00a5780b597738260f90020f139627e7d0b0107c 100644 --- a/compose.yml +++ b/compose.yml @@ -1,6 +1,6 @@ services: postgres: - image: postgres:15 + image: docker.io/library/postgres:15 container_name: zed_postgres ports: - 5432:5432 @@ -23,7 +23,7 @@ services: - ./.blob_store:/data livekit_server: - image: livekit/livekit-server + image: docker.io/livekit/livekit-server container_name: livekit_server entrypoint: /livekit-server --config /livekit.yaml ports: @@ -34,7 +34,7 @@ services: - ./livekit.yaml:/livekit.yaml postgrest_app: - image: postgrest/postgrest + image: docker.io/postgrest/postgrest container_name: postgrest_app ports: - 8081:8081 @@ -47,7 +47,7 @@ services: - postgres postgrest_llm: - image: postgrest/postgrest + image: docker.io/postgrest/postgrest container_name: postgrest_llm ports: - 8082:8082 @@ -60,7 +60,7 @@ services: - postgres stripe-mock: - image: stripe/stripe-mock:v0.178.0 + image: docker.io/stripe/stripe-mock:v0.178.0 ports: - 12111:12111 - 12112:12112