Add Local Registry Example
This commit is contained in:
15
00_registry/docker-compose.yml
Normal file
15
00_registry/docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user