mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-24 14:53:52 +03:00
18 lines
371 B
YAML
18 lines
371 B
YAML
|
version: "3.9"
|
||
|
services:
|
||
|
postgres:
|
||
|
container_name: twenty_postgres
|
||
|
image: twentycrm/twenty-postgres:latest
|
||
|
volumes:
|
||
|
- twenty_db_data:/var/lib/postgresql/data
|
||
|
environment:
|
||
|
- POSTGRES_USER=postgres
|
||
|
- POSTGRES_PASSWORD=postgres
|
||
|
- POSTGRES_DB=default
|
||
|
ports:
|
||
|
- "5432:5432"
|
||
|
volumes:
|
||
|
twenty_db_data:
|
||
|
name: twenty_db_data
|
||
|
|