Install testing module in your Cloud
Overview
Copy the JWT Token
Setup Linux VM
Get Support for your Akto setup
Last updated
Last updated
sudo su -nano docker-agentic-testing.envANTHROPIC_API_KEY=<key>
NODE_ENV=production
PORT=5500
AGENTIC_MODE=false
NODE_TLS_REJECT_UNAUTHORIZED=0
USE_SESSION_MANAGEMENT=true
nano docker-compose-mini-testing-agentic.ymlversion: '3.8'
services:
agent-testing:
container_name: agent-testing
image: public.ecr.aws/aktosecurity/akto-agentic-testing:latest
ports:
- "5500:5500"
env_file:
- ./docker-agentic-testing.env
restart: always
akto-api-security-testing:
image: public.ecr.aws/aktosecurity/akto-api-security-mini-testing:latest
container_name: akto-api-security-testing
environment:
RUNTIME_MODE: hybrid
DATABASE_ABSTRACTOR_SERVICE_TOKEN: <token>
PUPPETEER_REPLAY_SERVICE_URL: "http://akto-puppeteer-replay:3000"
MINI_TESTING_NAME: "akto-testing-module"
AGENT_BASE_URL: "http://agent-testing:5500"
ports:
- "8001:8001"
restart: always
akto-api-security-puppeteer-replay:
image: public.ecr.aws/aktosecurity/akto-puppeteer-replay:latest
container_name: akto-puppeteer-replay
ports:
- "3000:3000"
environment:
NODE_ENV: production
restart: always
watchtower:
image: containrrr/watchtower
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
WATCHTOWER_CLEANUP: true
WATCHTOWER_POLL_INTERVAL: 1800
labels:
com.centurylinklabs.watchtower.enable: "false"docker-compose -f docker-compose-mini-testing-agentic.yml up -dsystemctl enable /usr/lib/systemd/system/docker.service