24 lines
418 B
YAML
24 lines
418 B
YAML
version: "3.8"
|
|
|
|
services:
|
|
centos-openclaw:
|
|
image: quay.io/centos/centos:stream9
|
|
container_name: centos-openclaw
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
- caddy_caddy_net
|
|
|
|
ports:
|
|
- "18789:18789"
|
|
|
|
volumes:
|
|
- openclaw_data:/root/openclaw
|
|
|
|
command: /bin/bash -c "tail -f /dev/null"
|
|
volumes:
|
|
openclaw_data:
|
|
|
|
networks:
|
|
caddy_caddy_net:
|
|
external: true |