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"