infra: relocate docker-30 compose stack under vms-home/, add garage and frisbee-drills
Move the docker-30 service definitions (gitea, kanidm, vault, zot, nginx, lab-proxy, maru-hleda-byt, fuj-management) into vms-home/ to match the naming convention used for other hosts, and add the new garage object-storage and frisbee-drills services alongside it. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
52
vms-home/docker-30/zot/config.yaml
Normal file
52
vms-home/docker-30/zot/config.yaml
Normal file
@@ -0,0 +1,52 @@
|
||||
distSpecVersion: "1.1.0"
|
||||
storage:
|
||||
rootDirectory: /var/lib/zot
|
||||
gc: true
|
||||
gcDelay: "24h"
|
||||
dedupe: true
|
||||
http:
|
||||
address: 0.0.0.0
|
||||
port: 5000
|
||||
compat:
|
||||
- docker2s2
|
||||
log:
|
||||
# level: info
|
||||
level: debug
|
||||
extensions:
|
||||
ui:
|
||||
enable: true
|
||||
search:
|
||||
enable: true
|
||||
sync:
|
||||
enable: true
|
||||
credentialsFile: "/etc/zot/sync-credentials.json"
|
||||
registries:
|
||||
- urls: ["https://registry-1.docker.io"]
|
||||
onDemand: true
|
||||
tlsVerify: true
|
||||
content:
|
||||
- prefix: "library/**"
|
||||
destination: "/docker.io/library"
|
||||
- prefix: "democraticcsi/**"
|
||||
destination: "/democraticcsi"
|
||||
- prefix: "**"
|
||||
destination: "/docker.io"
|
||||
|
||||
- urls: ["https://registry.k8s.io"]
|
||||
onDemand: true
|
||||
tlsVerify: true
|
||||
content:
|
||||
- prefix: "**"
|
||||
destination: "/registry.k8s.io"
|
||||
- urls: ["https://ghcr.io"]
|
||||
onDemand: true
|
||||
tlsVerify: true
|
||||
content:
|
||||
- prefix: "**"
|
||||
destination: "/ghcr.io"
|
||||
- urls: ["https://quay.io"]
|
||||
onDemand: true
|
||||
tlsVerify: true
|
||||
content:
|
||||
- prefix: "**"
|
||||
destination: "/quay.io"
|
||||
12
vms-home/docker-30/zot/docker-compose.yaml
Normal file
12
vms-home/docker-30/zot/docker-compose.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
services:
|
||||
zot:
|
||||
image: ghcr.io/project-zot/zot-linux-amd64:latest
|
||||
container_name: zot
|
||||
restart: unless-stopped
|
||||
command: serve /etc/zot/config.yaml
|
||||
ports:
|
||||
- "5000:5000"
|
||||
volumes:
|
||||
- ./config.yaml:/etc/zot/config.yaml:ro
|
||||
- ./sync-credentials.json:/etc/zot/sync-credentials.json:ro
|
||||
- /srv/container-registry-data:/var/lib/zot
|
||||
Reference in New Issue
Block a user