16 lines
289 B
YAML
16 lines
289 B
YAML
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
|