Skip to content

Commit

Permalink
Add "docker.io/" registry prefix to docker compose image (#274)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
Valloric authored Nov 21, 2023
1 parent 7865e08 commit 87813b3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/274.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [Valloric]
---

Add "docker.io/" registry prefix to docker compose image

0 comments on commit 87813b3

Please sign in to comment.