I'm using docker-compose command to run multiple containers. The problem is my docker-compose has to pull some images from the public repository and some from a private repository. What I'm planning to do is push all required images to the private repository but how can I make docker-compose pull the images from the private repository.
In short -> How to point to a private repository when the images are only available there
FROM private/repo:tag
, and should be the same in Docker Compose. Docker Hub and Amazon ECR can be accessed by using their CLI to authenticate, in your case, I can only point you to JFrog's registry page: click here – Sereydocker-compose.yml
file when when he doesdocker-compose up
– utkarsh31