mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-01 04:03:39 +00:00
14 lines
198 B
YAML
14 lines
198 B
YAML
|
version: '3'
|
||
|
|
||
|
services:
|
||
|
registry:
|
||
|
image: registry
|
||
|
ports:
|
||
|
- "443:5000"
|
||
|
volumes:
|
||
|
- ./:/etc/docker/registry
|
||
|
- registry-data:/var/lib/registry
|
||
|
|
||
|
volumes:
|
||
|
registry-data:
|