2
0
Files
bot/docker-compose.yml

36 lines
770 B
YAML
Raw Permalink Normal View History

volumes:
db-data:
2021-11-29 15:19:07 +01:00
services:
2024-09-12 13:52:42 +02:00
BLS-bot_db:
container_name: BLS-bot_db
image: postgres:14-alpine
2021-11-29 15:19:07 +01:00
restart: always
volumes:
2024-09-12 13:52:42 +02:00
- /Users/Docker/bot/datenbank:/var/lib/postgresql/data
2021-12-06 15:48:50 +01:00
environment:
2024-09-12 13:52:42 +02:00
- POSTGRES_USER=bot
- POSTGRES_DB=bot
- POSTGRES_PASSWORD=dujzuc-fuznew
ports:
- 5050:5432
2024-09-12 13:52:42 +02:00
BLS-bot_builder:
container_name: BLS-bot_builder
image: baptistearno/typebot-builder:latest
restart: always
depends_on:
2024-09-12 13:52:42 +02:00
- BLS-bot_db
ports:
2024-09-12 13:52:42 +02:00
- 5055:3000
extra_hosts:
- 'host.docker.internal:host-gateway'
env_file: .env
2024-09-12 13:52:42 +02:00
BLS-bot_viewer:
container_name: BLS-bot_viewer
image: baptistearno/typebot-viewer:latest
restart: always
ports:
2024-09-12 13:52:42 +02:00
- 5555:3000
env_file: .env