Add Local Registry Example

This commit is contained in:
Frank Woeckener
2025-03-28 08:21:34 +01:00
parent 7859ba370c
commit d8d1f2f63a
4 changed files with 33 additions and 0 deletions

View File

@@ -87,6 +87,13 @@ docker push username/mein-projekt:1.0
docker pull username/mein-projekt:1.0
```
Lokale Registry:
```bash
docker build -t localhost:5000/mein-projekt:1.0 .
docker push localhost:5000/mein-projekt:1.0
docker image ls localhost:5000/*
```
## Container-Lebenszyklus
### Starten, Stoppen, Löschen