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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 

18 lines
351 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
...