lots of stuff had been added
This commit is contained in:
parent
28420e86dd
commit
814900b72e
16 changed files with 257 additions and 0 deletions
16
registry/docker-compose.yml
Normal file
16
registry/docker-compose.yml
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
version: '3'
|
||||
services:
|
||||
registry:
|
||||
image: registry
|
||||
environment:
|
||||
REGISTRY_AUTH: htpasswd
|
||||
REGISTRY_AUTH_HTPASSWD_REALM: Registry
|
||||
REGISTRY_AUTH_HTPASSWD_PATH: /auth/registry.password
|
||||
REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY: /data
|
||||
ports:
|
||||
- "5555:5000"
|
||||
restart: always
|
||||
volumes:
|
||||
- ./auth:/auth
|
||||
- /mnt/vault/tatooine:/data
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue