twenty/infra/dev/docker-compose.yml

26 lines
523 B
YAML
Raw Normal View History

2022-12-28 23:19:12 +03:00
version: "3.9"
services:
twenty:
2023-01-27 14:12:04 +03:00
build:
context: ../..
dockerfile: ./infra/dev/twenty/Dockerfile
2023-01-27 14:12:04 +03:00
ports:
- "3000:3000"
2023-01-27 14:12:04 +03:00
- "3001:3001"
- "6006:6006"
volumes:
- ../../front:/app/front
- ../../server:/app/server
2023-01-27 14:12:04 +03:00
- ../../infra:/app/infra
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:
db_data: