33 lines
612 B
YAML
33 lines
612 B
YAML
version: '3.3'
|
|
|
|
volumes:
|
|
db-data:
|
|
|
|
services:
|
|
typebot-db:
|
|
image: postgres:14-alpine
|
|
restart: always
|
|
volumes:
|
|
- db-data:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_DB=typebot
|
|
- POSTGRES_PASSWORD=typebot
|
|
|
|
typebot-builder:
|
|
image: baptistearno/typebot-builder:latest
|
|
restart: always
|
|
depends_on:
|
|
- typebot-db
|
|
ports:
|
|
- '8080:3000'
|
|
extra_hosts:
|
|
- 'host.docker.internal:host-gateway'
|
|
env_file: .env
|
|
|
|
typebot-viewer:
|
|
image: baptistearno/typebot-viewer:latest
|
|
restart: always
|
|
ports:
|
|
- '8081:3000'
|
|
env_file: .env
|