Skip to content

Commit

Permalink
Ensure docker-compose.yml works with Podman Compose
Browse files Browse the repository at this point in the history
Resolves the following error:

Error: short-name "postgres:15.5" did not resolve to an alias and no
unqualified-search registries are defined in
"/etc/containers/registries.conf"
  • Loading branch information
kianmeng committed Aug 1, 2024
1 parent fc1ae23 commit 1083d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
postgres:
image: postgres:15.5
image: docker.io/postgres:15.5
volumes:
- postgres-data:/var/lib/postgresql/data
environment:
Expand Down

0 comments on commit 1083d78

Please sign in to comment.