twenty/infra/dev/docker-compose.yml

85 lines
2.4 KiB
YAML
Raw Normal View History

2022-12-28 23:19:12 +03:00
version: "3.9"
services:
2023-04-12 16:08:27 +03:00
twenty-front:
2023-01-27 14:12:04 +03:00
build:
context: ../..
2023-04-12 16:08:27 +03:00
dockerfile: ./infra/dev/front/Dockerfile
2023-01-27 14:12:04 +03:00
ports:
- "3001:3001"
- "6006:6006"
volumes:
2023-04-12 16:08:27 +03:00
- ../../front:/app/front
2023-04-05 16:01:20 +03:00
- twenty_node_modules_front:/app/front/node_modules
2023-04-12 16:08:27 +03:00
depends_on:
- postgres
twenty-hasura:
build: ./hasura
ports:
- "8080:8080"
- "9695:9695"
- "9693:9693"
volumes:
- ../../hasura:/hasura
2023-04-19 14:04:21 +03:00
- /hasura/entrypoints
2023-04-12 16:08:27 +03:00
depends_on:
- "postgres"
restart: always
environment:
HASURA_GRAPHQL_METADATA_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/hasura
2023-04-20 14:45:59 +03:00
HASURA_GRAPHQL_PG_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/default
2023-04-13 19:12:33 +03:00
HASURA_GRAPHQL_ENABLE_CONSOLE: "false"
2023-04-12 16:08:27 +03:00
HASURA_GRAPHQL_DEV_MODE: "true"
HASURA_GRAPHQL_ENABLED_LOG_TYPES: startup, http-log, webhook-log, websocket-log, query-log
2023-04-19 14:04:21 +03:00
HASURA_GRAPHQL_ADMIN_SECRET: secret
HASURA_GRAPHQL_JWT_SECRET: '{"type":"HS256", "key": "jwt-very-long-hard-to-guess-secret"}'
hasura-auth:
image: nhost/hasura-auth:0.19.1
ports:
- "4000:4000"
environment:
HASURA_GRAPHQL_JWT_SECRET: '{"type":"HS256", "key": "jwt-very-long-hard-to-guess-secret"}'
2023-04-20 14:45:59 +03:00
HASURA_GRAPHQL_DATABASE_URL: postgres://postgres:postgrespassword@postgres:5432/default
2023-04-19 14:04:21 +03:00
HASURA_GRAPHQL_GRAPHQL_URL: http://twenty-hasura:8080/v1/graphql
HASURA_GRAPHQL_ADMIN_SECRET: secret
npm_package_version: '0'
AUTH_SMTP_HOST: mailhog
AUTH_SMTP_PORT: 1025
depends_on:
- "twenty-hasura"
- "postgres"
2023-04-19 18:51:15 +03:00
- "mailhog"
mailhog:
image: jcalonso/mailhog
environment:
SMTP_HOST: mailhog
SMTP_PORT: 1025
SMTP_PASS: smtp-secret
SMTP_USER: smtp-user
SMTP_SECURE: "false"
SMTP_SENDER: auth@localhost
ports:
- "1025:1025"
- "8025:8025"
2023-04-12 16:08:27 +03:00
twenty-server:
build:
context: ../..
dockerfile: ./infra/dev/server/Dockerfile
ports:
- "3000:3000"
volumes:
- ../../server:/app/server
2023-04-05 16:01:20 +03:00
- twenty_node_modules_server:/app/server/node_modules
2023-01-27 14:12:04 +03:00
depends_on:
- postgres
2022-12-28 23:19:12 +03:00
postgres:
build: ./postgres
volumes:
- db_data:/var/lib/postgresql/data
environment:
POSTGRES_PASSWORD: postgrespassword
ports:
- "5432:5432"
volumes:
2023-04-05 16:01:20 +03:00
db_data:
twenty_node_modules_front:
twenty_node_modules_server: