This commit is contained in:
2025-11-04 10:17:37 -08:00
parent e922a939f5
commit 1a19f799bd
4 changed files with 14 additions and 18 deletions

View File

@@ -22,16 +22,14 @@ docker-compose up -d
```
3. Access:
- Registry API: http://localhost:5000
- Web UI: http://localhost:8080
- Registry API: http://your-domain:5000
- Web UI: http://your-domain
## Coolify Deployment
In Coolify, set these environment variables as needed:
### Basic Configuration
- `REGISTRY_PORT`: Registry port (default: 5000)
- `UI_PORT`: UI port (default: 8080)
- `REGISTRY_TITLE`: Registry title for UI
- `REGISTRY_URL`: Internal registry URL
@@ -54,18 +52,18 @@ In Coolify, set these environment variables as needed:
### Push an image
```bash
docker tag myimage localhost:5000/myimage
docker push localhost:5000/myimage
docker tag myimage your-domain:5000/myimage
docker push your-domain:5000/myimage
```
### Pull an image
```bash
docker pull localhost:5000/myimage
docker pull your-domain:5000/myimage
```
### List images
```bash
curl http://localhost:5000/v2/_catalog
curl http://your-domain:5000/v2/_catalog
```
## Authentication (Optional)