You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
307 B
18 lines
307 B
---
|
|
version: "3"
|
|
|
|
services:
|
|
registry:
|
|
image: registry:2.7.1
|
|
container_name: registry
|
|
|
|
hostname: registry
|
|
restart: always
|
|
|
|
ports:
|
|
- "5000:5000"
|
|
|
|
volumes:
|
|
- ./etc/docker/registry/config.yml:/etc/docker/registry/config.yml
|
|
- ./var/lib/registry:/var/lib/registry
|
|
...
|