Copied all stacks

This commit is contained in:
Khwezi
2026-04-11 09:51:19 +02:00
parent 7c14e29bd4
commit 99efa12f43
25 changed files with 1040 additions and 4 deletions

View File

@@ -0,0 +1,12 @@
services:
dockhand:
image: fnsys/dockhand:latest
container_name: dockhand
restart: unless-stopped
ports:
- "3000:3000"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- dockhand_data:/app/data
volumes:
dockhand_data:

View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
nexus:
image: sonatype/nexus3:latest
container_name: nexus-mirror
restart: always
ports:
- "4009:8081"
- "4010:8082"
environment:
# Memory limits: Adjust based on your VM capacity
- INSTALL4J_ADD_VM_PARAMS=-Xms2g -Xmx2g -XX:MaxDirectMemorySize=2g -Dnexus.secrets.file=/nexus-data/nexus.secrets.json
volumes:
- ./nexus-data:/nexus-data

View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
pgadmin:
image: dpage/pgadmin4
container_name: pgadmin
environment:
PGADMIN_DEFAULT_EMAIL: khwezi@litecharms.co.za
PGADMIN_DEFAULT_PASSWORD: Blackstar2@home
ports:
- "8080:80"
volumes:
- pgadmin-data:/var/lib/pgadmin
volumes:
pgadmin-data:

View File

@@ -0,0 +1,17 @@
services:
portainer:
container_name: portainer
image: portainer/portainer-ce:lts
restart: always
extra_hosts:
- "id.khongisa.co.za:192.168.1.171"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
ports:
- 9443:9443
- 8000:8000
volumes:
portainer_data:
name: portainer_data

View File

@@ -0,0 +1,14 @@
version: '3'
services:
registry:
image: registry:2
ports:
- "3003:5000"
environment:
REGISTRY_AUTH: token
REGISTRY_AUTH_TOKEN_REALM: https://gitea.khongisa.co.za/v2/token
REGISTRY_AUTH_TOKEN_SERVICE: gitea
REGISTRY_AUTH_TOKEN_ISSUER: gitea
volumes:
- ./data:/var/lib/registry
- ./config.yml:/etc/docker/registry/config.yml