Hi! I love this app. I created a docker compose file to use it—in lieu of k3d registry create—so that I can explicitly set the IP address it listens on. While doing so, I realized the dockerfile doesn't have a HEALTHCHECK directive. No biggie, but it would be nice. Even just something to safely fill this section in:
services:
registry:
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"] # WHAT SHOULD GO HERE?
interval: 1m30s
timeout: 10s
retries: 3
start_period: 40s
start_interval: 5s
If any other users have suggestions that do not involve modifying the code, I'm all ears!
thanks again for the great service. Cheers, Vincent
Hi! I love this app. I created a docker compose file to use it—in lieu of k3d registry create—so that I can explicitly set the IP address it listens on. While doing so, I realized the dockerfile doesn't have a HEALTHCHECK directive. No biggie, but it would be nice. Even just something to safely fill this section in:
If any other users have suggestions that do not involve modifying the code, I'm all ears!
thanks again for the great service. Cheers, Vincent