Giter Club home page Giter Club logo

Comments (11)

almereyda avatar almereyda commented on August 16, 2024 1

www.composeregistry.com is long down and parked at GoDaddy. This issue could be renamed to custom compose registry or alike.

from docker-compose-ui.

francescou avatar francescou commented on August 16, 2024

Hi, there is no option to configure the docker-compose registry at the moment.
The problem is that there isn't a "standard" API, so you should implement an API like this: https://www.composeregistry.com/documentation

However...I plan to release the docker compose registry source code soon (I am the maintainer of Compose Registry), so it will be possible to have a self hosted instance. Then I will add an option to configure the registry URL in docker-compose-ui.

from docker-compose-ui.

bergtwvd avatar bergtwvd commented on August 16, 2024

That would actually be great. Thanks.

from docker-compose-ui.

francescou avatar francescou commented on August 16, 2024

Hi @bergtwvd I've been working on a registry to be released as open source in the next days.

would you like to help me testing it? thanks

from docker-compose-ui.

bergtwvd avatar bergtwvd commented on August 16, 2024

Yes, sure, no problem. Just send me the info.

from docker-compose-ui.

francescou avatar francescou commented on August 16, 2024

please send me an email so that I can add you as contributor

from docker-compose-ui.

bergtwvd avatar bergtwvd commented on August 16, 2024

from docker-compose-ui.

MichaelMackus avatar MichaelMackus commented on August 16, 2024

@francescou any update(s) on this? I'd be OK with just a configuration option to set the registry URL. Then, I can just implement the API endpoints I need in a custom app.

from docker-compose-ui.

francescou avatar francescou commented on August 16, 2024

Hi @MichaelMackus
I didn't release the registry (yet) due to lack of time to work on it (I've made some tests with the help of @bergtwvd but I would like to improve the documentation before releasing it).
I would really appreciate it If you could contribute to the project.

Meanwhile, I've created an experimental branch: custom-registry to customize the docker-compose registry URL (you just have to add a DOCKER_COMPOSE_REGISTRY env). The feature is not finished yet but it should work.

from docker-compose-ui.

MichaelMackus avatar MichaelMackus commented on August 16, 2024

👍

That looks like exactly what I need for my use case. I'll check it out and let you know how it works.

from docker-compose-ui.

francescou avatar francescou commented on August 16, 2024

Hello @bergtwvd and @MichaelMackus
I've created a basic docker compose registry implementation: https://github.com/francescou/compose-registry and a swagger specification: https://raw.githubusercontent.com/francescou/compose-registry/master/api/swagger.yaml

Instructions:

docker run --rm \
  --name compose-registry \
  --volume $(pwd)/demo-projects/:/projects/:ro \
  --publish 8080:8080  \
  --read-only \
  francescou/compose-registry:0.2
docker pull francescou/docker-compose-ui
docker run --name docker-compose-ui \
  -p 5000:5000 \
  -e DOCKER_COMPOSE_REGISTRY=http://my-compose-registry:8080 \
  --link compose-registry:my-compose-registry \
  -w /opt/docker-compose-projects/ \
  -v /var/run/docker.sock:/var/run/docker.sock \
  francescou/docker-compose-ui

you can customize the current nodejs registry implementation of create a new one using another language/framework from the swagger specification following this documentation: https://github.com/francescou/compose-registry

Any feedback is welcome.

from docker-compose-ui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.