the universal sandbox runtime for agents and humans.
pocketenv.io
sandbox
openclaw
agent
claude-code
vercel-sandbox
deno-sandbox
cloudflare-sandbox
atproto
sprites
daytona
1services:
2 db:
3 image: postgres:18
4 ports:
5 - "5434:5432"
6 environment:
7 POSTGRES_USER: postgres
8 POSTGRES_PASSWORD: mysecretpassword
9 POSTGRES_DB: pocketenv
10 volumes:
11 - pgdata:/var/lib/postgresql/18/docker
12 healthcheck:
13 test: ["CMD", "pg_isready"]
14 interval: 10s
15 timeout: 5s
16 retries: 5
17 dragonfly:
18 image: docker.dragonflydb.io/dragonflydb/dragonfly:latest
19 command: --maxmemory=4g
20 ports:
21 - "6379:6379"
22 ulimits:
23 memlock:
24 soft: -1
25 hard: -1
26volumes:
27 pgdata: