adawale
This commit is contained in:
14
README.md
14
README.md
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user