From 7445b0df4eb007b4553a694d5fb549eccd14ddf8 Mon Sep 17 00:00:00 2001 From: Pratham Patel Date: Sun, 13 Nov 2022 18:14:41 +0530 Subject: [PATCH] master-compose: use a fully qualified image name (required as of Podman v4.3.0) --- master-compose.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/master-compose.yml b/master-compose.yml index 70896b7..a56d17d 100644 --- a/master-compose.yml +++ b/master-compose.yml @@ -4,7 +4,7 @@ services: reverse-proxy: - image: caddy:alpine + image: docker.io/library/caddy:alpine container_name: caddy-vishwambhar command: caddy run --config /etc/caddy/Caddyfile restart: always @@ -31,7 +31,7 @@ services: gitea-web: - image: gitea/gitea:latest + image: docker.io/gitea/gitea:latest container_name: gitea-govinda restart: always ports: @@ -68,7 +68,7 @@ services: gitea-db: - image: postgres:14-alpine + image: docker.io/library/postgres:14-alpine container_name: gitea-chitragupta restart: always volumes: @@ -86,7 +86,7 @@ services: thefossguy-blog: - image: klakegg/hugo:alpine + image: docker.io/klakegg/hugo:alpine container_name: hugo-vaikunthnatham command: server --disableFastRender -b https://blog.thefossguy.com/ --appendPort=false restart: always @@ -102,7 +102,7 @@ services: nextcloud-web: - image: nextcloud:production + image: docker.io/library/nextcloud:production container_name: nextcloud-govinda restart: always ports: @@ -131,7 +131,7 @@ services: nextcloud-db: - image: postgres:14-alpine + image: docker.io/library/postgres:14-alpine container_name: nextcloud-chitragupta restart: always volumes: @@ -169,7 +169,7 @@ services: thefossguy-mach: - image: klakegg/hugo:ext-debian + image: docker.io/klakegg/hugo:ext-debian container_name: hugo-mahayogi command: server --disableFastRender -b https://mach.thefossguy.com/ --appendPort=false restart: always