Skip to content

Commit

Permalink
Add docker registry URL to image name
Browse files Browse the repository at this point in the history
Using fully qualified image names means
podman also works as an alternative to
docker. Docker implicitly pulls unqualified
images from docker.io, while podman requires
fully qualified image names by default.
  • Loading branch information
dengelt committed Jun 23, 2024
1 parent c3484ee commit bc11e4e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/soarca/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3.7'
services:
mongodb_container:
image: mongo:latest
image: docker.io/mongo:latest
container_name: mongo_soarca_stack
environment:
MONGO_INITDB_ROOT_USERNAME: "root"
Expand All @@ -14,7 +14,7 @@ services:
target: /data/db

mosquitto:
image: eclipse-mosquitto
image: docker.io/eclipse-mosquitto
container_name: mosquitto
volumes:
- type: volume
Expand All @@ -39,7 +39,7 @@ services:
mode: host

soarca:
image: cossas/soarca:latest
image: docker.io/cossas/soarca:latest
container_name: soarca_server
environment:
PORT: 8080
Expand Down

0 comments on commit bc11e4e

Please sign in to comment.