Add "docker.io/" registry prefix to docker compose image (#274)

Required by Podman Compose. Docker Compose should not care either way. The registry prefix is explicitly supported in the [compose file spec](https://github.com/compose-spec/compose-spec/blob/master/spec.md#image)
This commit is contained in:
Val Markovic
2023-11-21 11:14:45 -08:00
committed by GitHub
parent 7865e08c91
commit 87813b398a
2 changed files with 7 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
version: '3'
services:
actual_server:
image: actualbudget/actual-server:latest
image: docker.io/actualbudget/actual-server:latest
ports:
# This line makes Actual available at port 5006 of the device you run the server on,
# i.e. http://localhost:5006. You can change the first number to change the port, if you want.

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [Valloric]
---
Add "docker.io/" registry prefix to docker compose image