Skip to main content
Use this page for daily container maintenance after autClaw is deployed. You can view logs, recreate the container, pull the latest image, or use Docker Compose to manage persistent directories on Feiniu OS (FNOS) and Synology DSM.

View logs

docker logs -f autclaw

Stop and remove the container

docker rm -f autclaw

Update to the latest image

docker pull nolan1121953/autclaw:latest
docker rm -f autclaw
docker run -d \
  --name autclaw \
  --restart unless-stopped \
  --network bridge \
  -p 8200:8200 \
  -v /opt/autclaw:/opt/autclaw \
  nolan1121953/autclaw:latest

Use Docker Compose

AUTCLAW_HOST_DATA_DIR=/opt/autclaw AUTCLAW_HTTP_PORT=8200 docker compose up -d
Optional environment variables:
VariableDescription
AUTCLAW_HOST_DATA_DIRHost persistent directory. /opt/autclaw is recommended by default.
AUTCLAW_HTTP_PORTHost access port. Defaults to 8200.
AUTCLAW_IMAGECustom image. Defaults to nolan1121953/autclaw:latest.

Feiniu OS (FNOS) compose example

AUTCLAW_HOST_DATA_DIR=/vol1/1000/docker/autclaw AUTCLAW_HTTP_PORT=8200 docker compose up -d

Synology compose example

AUTCLAW_HOST_DATA_DIR=/volume1/docker/autclaw AUTCLAW_HTTP_PORT=8200 docker compose up -d
Last modified on June 3, 2026