Switched Arcane for Dockpeek

This commit is contained in:
2025-10-04 11:05:23 +02:00
parent b2662b05da
commit 6d9de03ac8
6 changed files with 56 additions and 80 deletions

25
arcane/agent-compose.yaml Normal file
View File

@@ -0,0 +1,25 @@
# carlo: fEpbsshKL67xntGZXvig9eKGtQPeYS8N
# gary: rbJ75M7coTZCxmocSQ9DDFhbRE5BzgB5
# sandy: y2R7MyVcN2KgG7Dkjh8bZZP7YJEFgmAq
# krabs: D5RQ5andUN6mN9QViEzjidqkyDHSDMqv
# sheldon: nr4qbG58vppNuAEg648DYa2Xt45DmTYP
# bernie: ro4fTDt37QuCSkMEGLzNLcQNqapgKbjS
---
name: arcane-agent
volumes:
agent-data: {}
services:
arcane-agent:
image: ghcr.io/ofkm/arcane-headless:latest
container_name: arcane-agent
ports:
- '3553:3553'
environment:
- AGENT_MODE=true
- AGENT_BOOTSTRAP_TOKEN=${TOKEN:-xxxxxxxxxxxxxxxxxxxx}
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- agent-data:/app/data
restart: unless-stopped

View File

@@ -0,0 +1,24 @@
#
---
name: arcane
volumes:
arcane-data:
services:
arcane:
image: ghcr.io/ofkm/arcane:latest
container_name: arcane
ports:
- '32519:3552'
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- arcane-data:/app/data
- /mnt/data/docker:/app/data/projects
environment:
- APP_URL=https://dkr.delmar.bzh
- PUID=1000
- PGID=1000
- ENCRYPTION_KEY=wRixZ38z76kQZA9AR7ECJveevp3BbR5d
- JWT_SECRET=hG9JUXuuocrDBdKRU6NnwaaARCVfVYbF
restart: unless-stopped

View File

@@ -1,16 +1,20 @@
#
---
name: dockge
volumes:
data:
stacks:
name: stacks
services:
dockge:
image: louislam/dockge:1
restart: unless-stopped
ports:
- 14743:5001
- 32519:5001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
- data:/app/data
# - /root/.docker/:/root/.docker
- stacks:/opt/stacks
environment:

View File

@@ -1,46 +0,0 @@
# https://docs.docker.com/engine/daemon/remote-access/
---
name: dockpeek
services:
dockpeek:
image: ghcr.io/dockpeek/dockpeek:latest
container_name: dockpeek
restart: unless-stopped
ports:
- "3420:8000"
environment:
- SECRET_KEY=99BELCTHeJDJ6AFpg4fmKMoQG3vcar6M
- USERNAME=admin
- PASSWORD=XbJ6do@xT8478c
# --- Bob (Local) ---
- DOCKER_HOST_1_URL=unix:///var/run/docker.sock # Local Docker socket
- DOCKER_HOST_1_NAME=Bob # Display name in UI
- DOCKER_HOST_1_PUBLIC_HOSTNAME=bob
# --- Carlo (Remote Server) ---
- DOCKER_HOST_2_URL=tcp://192.168.1.12:2375 # Remote socket proxy
- DOCKER_HOST_2_NAME=Carlo # Display name in UI
- DOCKER_HOST_2_PUBLIC_HOSTNAME=carlo # Optional: Custom hostname for links
# --- Gary (Remote Server) ---
- DOCKER_HOST_3_URL=tcp://192.168.1.13:2375 # Remote socket proxy
- DOCKER_HOST_3_NAME=Gary # Display name in UI
- DOCKER_HOST_3_PUBLIC_HOSTNAME=gary # Optional: Custom hostname for links
# --- Sandy (Remote Server) ---
- DOCKER_HOST_4_URL=tcp://192.168.1.14:2375 # Remote socket proxy
- DOCKER_HOST_4_NAME=Sandy # Display name in UI
- DOCKER_HOST_4_PUBLIC_HOSTNAME=sandy # Optional: Custom hostname for links
# --- Krabs (Remote Server) ---
- DOCKER_HOST_5_URL=tcp://192.168.1.15:2375 # Remote socket proxy
- DOCKER_HOST_5_NAME=Krabs # Display name in UI
- DOCKER_HOST_5_PUBLIC_HOSTNAME=krabs # Optional: Custom hostname for links
# --- Sheldon (Remote Server) ---
- DOCKER_HOST_6_URL=tcp://192.168.1.16:2375 # Remote socket proxy
- DOCKER_HOST_6_NAME=Sheldon # Display name in UI
- DOCKER_HOST_6_PUBLIC_HOSTNAME=sheldon # Optional: Custom hostname for links
# --- Bernie (Remote Server) ---
- DOCKER_HOST_7_URL=tcp://192.168.1.17:2375 # Remote socket proxy
- DOCKER_HOST_7_NAME=Bernie # Display name in UI
- DOCKER_HOST_7_PUBLIC_HOSTNAME=bernie # Optional: Custom hostname for links
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro

View File

@@ -1,13 +0,0 @@
DATABASE_URL=postgres://postgres:aU52HoLeuGQf5TDU@db/windmill?sslmode=disable
# For Enterprise Edition, use:
# WM_IMAGE=ghcr.io/windmill-labs/windmill-ee:main
WM_IMAGE=ghcr.io/windmill-labs/windmill:main
# To use another port than :80, setup the Caddyfile and the caddy section of the docker-compose to your needs: https://caddyserver.com/docs/getting-started
# To have caddy take care of automatic TLS
# To rotate logs, set the following variables:
#LOG_MAX_SIZE=10m
#LOG_MAX_FILE=3

View File

@@ -1,18 +0,0 @@
{
layer4 {
:25 {
proxy {
to windmill_server:2525
}
}
}
}
{$BASE_URL} {
bind {$ADDRESS}
reverse_proxy /ws/* http://lsp:3001
# reverse_proxy /ws_mp/* http://multiplayer:3002
# reverse_proxy /api/srch/* http://windmill_indexer:8002
reverse_proxy /* http://windmill_server:8000
# tls /certs/cert.pem /certs/key.pem
}