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
This commit is contained in:
David Kleingeld 2025-09-19 16:12:49 +02:00 committed by GitHub
parent 3217bcb83e
commit aa5b99dc11
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,6 @@
services: services:
postgres: postgres:
image: postgres:15 image: docker.io/library/postgres:15
container_name: zed_postgres container_name: zed_postgres
ports: ports:
- 5432:5432 - 5432:5432
@ -23,7 +23,7 @@ services:
- ./.blob_store:/data - ./.blob_store:/data
livekit_server: livekit_server:
image: livekit/livekit-server image: docker.io/livekit/livekit-server
container_name: livekit_server container_name: livekit_server
entrypoint: /livekit-server --config /livekit.yaml entrypoint: /livekit-server --config /livekit.yaml
ports: ports:
@ -34,7 +34,7 @@ services:
- ./livekit.yaml:/livekit.yaml - ./livekit.yaml:/livekit.yaml
postgrest_app: postgrest_app:
image: postgrest/postgrest image: docker.io/postgrest/postgrest
container_name: postgrest_app container_name: postgrest_app
ports: ports:
- 8081:8081 - 8081:8081
@ -47,7 +47,7 @@ services:
- postgres - postgres
postgrest_llm: postgrest_llm:
image: postgrest/postgrest image: docker.io/postgrest/postgrest
container_name: postgrest_llm container_name: postgrest_llm
ports: ports:
- 8082:8082 - 8082:8082
@ -60,7 +60,7 @@ services:
- postgres - postgres
stripe-mock: stripe-mock:
image: stripe/stripe-mock:v0.178.0 image: docker.io/stripe/stripe-mock:v0.178.0
ports: ports:
- 12111:12111 - 12111:12111
- 12112:12112 - 12112:12112