registry: add
This commit is contained in:
parent
5b04a6566c
commit
4413b56ec4
|
@ -16,6 +16,7 @@ include:
|
||||||
- services/openldap.yml
|
- services/openldap.yml
|
||||||
- services/prowlarr.yml
|
- services/prowlarr.yml
|
||||||
- services/netbootxyz.yml
|
- services/netbootxyz.yml
|
||||||
|
- services/registry.yml
|
||||||
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
services:
|
||||||
|
registry:
|
||||||
|
image: registry:latest
|
||||||
|
container_name: registry
|
||||||
|
networks:
|
||||||
|
public:
|
||||||
|
ipv4_address: 192.168.240.45
|
||||||
|
volumes:
|
||||||
|
- "${DOCKER_STORAGE_PATH}/registry/data:/var/lib/registry"
|
||||||
|
- "${DOCKER_STORAGE_PATH}/registry/config.yml:/etc/docker/registry/config.yml"
|
||||||
|
profiles:
|
||||||
|
- base
|
||||||
|
restart: unless-stopped
|
Loading…
Reference in New Issue