Skip to content

Instantly share code, notes, and snippets.

@stefanpejcic
Created October 17, 2025 16:40
Show Gist options
  • Select an option

  • Save stefanpejcic/a51042c11f1fab18265539054cb9ab47 to your computer and use it in GitHub Desktop.

Select an option

Save stefanpejcic/a51042c11f1fab18265539054cb9ab47 to your computer and use it in GitHub Desktop.
typebot.io on openpanel.com
typebot-builder:
container_name: typebot-builder
image: baptistearno/typebot-builder:latest
restart: always
depends_on:
redis:
condition: service_healthy
postgres:
condition: service_healthy
networks:
- www
environment:
REDIS_URL: redis://redis:6379
ports:
- "8080:3000"
typebot-viewer:
container_name: typebot-viewer
image: baptistearno/typebot-viewer:latest
restart: always
depends_on:
redis:
condition: service_healthy
postgres:
condition: service_healthy
deploy:
resources:
limits:
cpus: "${TYPEBOT_CPU:-0.35}"
memory: "${TYPEBOT_RAM:-0.35G}"
pids: 100
networks:
- www
environment:
REDIS_URL: redis://redis:6379
ports:
- "8081:3000"
# TYPEBOT
TYPEBOT_CPU="0.5"
TYPEBOT_RAM="0.5G"
ENCRYPTION_SECRET=do+UspMmB/rewbX2K/rskFmtgGSSZ8Ta
DATABASE_URL=postgresql://postgres:changeme@postgres:5432/typebot
NODE_OPTIONS=--no-node-snapshot
NEXTAUTH_URL=http://IP:8080
NEXT_PUBLIC_VIEWER_URL=http://IP:8081
[email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment