2022-12-28 23:19:12 +03:00
|
|
|
version: "3.9"
|
|
|
|
services:
|
|
|
|
twenty-server:
|
|
|
|
build:
|
|
|
|
context: ../..
|
|
|
|
dockerfile: ./infra/dev/twenty-server/Dockerfile
|
|
|
|
ports:
|
|
|
|
- "3000:3000"
|
|
|
|
depends_on:
|
|
|
|
- postgres
|
|
|
|
twenty-api:
|
2022-12-29 00:32:55 +03:00
|
|
|
build: ./twenty-api
|
2022-12-28 23:19:12 +03:00
|
|
|
ports:
|
|
|
|
- "8080:8080"
|
|
|
|
depends_on:
|
|
|
|
- "postgres"
|
|
|
|
restart: always
|
|
|
|
environment:
|
|
|
|
HASURA_GRAPHQL_METADATA_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/hasura
|
|
|
|
PG_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/twenty
|
|
|
|
HASURA_GRAPHQL_ENABLE_CONSOLE: "true"
|
|
|
|
HASURA_GRAPHQL_DEV_MODE: "true"
|
|
|
|
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log
|
|
|
|
postgres:
|
|
|
|
build: ./postgres
|
|
|
|
volumes:
|
|
|
|
- db_data:/var/lib/postgresql/data
|
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: postgrespassword
|
|
|
|
ports:
|
|
|
|
- "5432:5432"
|
|
|
|
volumes:
|
|
|
|
db_data:
|