Skip to content

Commit

Permalink
Include repository in docker image
Browse files Browse the repository at this point in the history
Motivation:

The docker-compose image does not work under Debian systems because such
systems disable automatically resolving.  This is done because it is
unsafe: you might download the "wrong" image.

Modification:

Update the reference so that it includes the registry (dockerhub.io)
explicitly.

Result:

Docker compose now works under Debian
  • Loading branch information
paulmillar authored and bpedersen2 committed Apr 18, 2024
1 parent 69d8d02 commit 93cdf19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.dev.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
mongodb:
image: bitnami/mongodb:4.2
image: docker.io/bitnami/mongodb:4.2
volumes:
- mongodb_data:/bitnami
backend:
Expand Down

0 comments on commit 93cdf19

Please sign in to comment.