Add Local Registry Example

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

View File

@@ -0,0 +1,15 @@
services:
registry:
image: registry:2.8.3
container_name: registry
restart: always
ports:
- "5000:5000"
environment:
REGISTRY_STORAGE_DELETE_ENABLED: "true"
volumes:
- registry-data:/var/lib/registry
volumes:
registry-data:
driver: local