19 lines
466 B
YAML
19 lines
466 B
YAML
version: '3'
|
|
|
|
services:
|
|
registry:
|
|
restart: always
|
|
image: registry:2
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
REGISTRY_AUTH: htpasswd
|
|
REGISTRY_AUTH_HTPASSWD_REALM: Registry
|
|
REGISTRY_AUTH_HTPASSWD_PATH: /auth/registry.password
|
|
REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY: /data
|
|
REGISTRY_HTTP_HOST: https://registry.flowy.live:5443
|
|
REGISTRY_HTTP_RELATIVEURLS: true
|
|
volumes:
|
|
- ./auth:/auth
|
|
- ./data:/data
|