2
0

🐳 Bump Postgres version in official docker compose file

This commit is contained in:
Baptiste Arnaud
2023-10-02 11:20:06 +02:00
parent 42ae75cb11
commit 876625deb8
3 changed files with 20 additions and 6 deletions

View File

@ -1,13 +1,18 @@
version: '3.3'
volumes:
db-data:
services:
typebot-db:
image: postgres:13
image: postgres:14-alpine
restart: always
volumes:
- ${PWD}/.typebot/database:/var/lib/postgresql/data
- db-data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=typebot
- POSTGRES_PASSWORD=typebot
typebot-builder:
image: baptistearno/typebot-builder:latest
restart: always
@ -18,6 +23,7 @@ services:
extra_hosts:
- 'host.docker.internal:host-gateway'
env_file: .env
typebot-viewer:
image: baptistearno/typebot-viewer:latest
restart: always