auto: sync 2026-05-27

This commit is contained in:
2026-05-27 03:15:08 +02:00
parent fad768d2ed
commit b1842b1949
+27 -13
View File
@@ -31,23 +31,20 @@ services:
cpus: "2.0" cpus: "2.0"
memory: 1G memory: 1G
arcane-agent: portainer-agent:
image: ghcr.io/getarcaneapp/arcane-headless:latest image: portainer/agent:latest
container_name: arcane-agent container_name: portainer-agent
restart: unless-stopped restart: unless-stopped
ports:
- "9001:9001"
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
- ./arcane-agent:/app/data - /var/lib/docker/volumes:/var/lib/docker/volumes
environment:
EDGE_AGENT: "true"
EDGE_TRANSPORT: poll
AGENT_TOKEN: ${ARCANE_AGENT_TOKEN}
MANAGER_API_URL: http://192.168.1.8:10002
deploy: deploy:
resources: resources:
limits: limits:
cpus: "0.5" cpus: "0.25"
memory: 256M memory: 128M
pgadmin: pgadmin:
image: dpage/pgadmin4:latest image: dpage/pgadmin4:latest
@@ -80,9 +77,26 @@ services:
volumes: volumes:
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock
ports: ports:
- '7007:7007' - "7007:7007"
deploy: deploy:
resources: resources:
limits: limits:
cpus: '0.25' cpus: "0.25"
memory: 64M memory: 64M
docker-socket-proxy:
image: tecnativa/docker-socket-proxy:latest
container_name: docker-socket-proxy
restart: unless-stopped
ports:
- "2375:2375"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
environment:
- CONTAINERS=1
- INFO=1
deploy:
resources:
limits:
cpus: "0.1"
memory: 32M