36 lines
770 B
YAML
36 lines
770 B
YAML
volumes:
|
|
db-data:
|
|
|
|
services:
|
|
BLS-bot_db:
|
|
container_name: BLS-bot_db
|
|
image: postgres:14-alpine
|
|
restart: always
|
|
volumes:
|
|
- /Users/Docker/bot/datenbank:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_USER=bot
|
|
- POSTGRES_DB=bot
|
|
- POSTGRES_PASSWORD=dujzuc-fuznew
|
|
ports:
|
|
- 5050:5432
|
|
|
|
BLS-bot_builder:
|
|
container_name: BLS-bot_builder
|
|
image: baptistearno/typebot-builder:latest
|
|
restart: always
|
|
depends_on:
|
|
- BLS-bot_db
|
|
ports:
|
|
- 5055:3000
|
|
extra_hosts:
|
|
- 'host.docker.internal:host-gateway'
|
|
env_file: .env
|
|
|
|
BLS-bot_viewer:
|
|
container_name: BLS-bot_viewer
|
|
image: baptistearno/typebot-viewer:latest
|
|
restart: always
|
|
ports:
|
|
- 5555:3000
|
|
env_file: .env |