-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (35 loc) · 816 Bytes
/
docker-compose.yml
File metadata and controls
39 lines (35 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
services:
postgres:
image: postgres:17-alpine
container_name: formEngine-postgres
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: 1234
POSTGRES_DB: postgres
ports:
- "5432:5432"
restart: on-failure
networks:
- app_network
volumes:
- postgres_data:/var/lib/postgresql/data
drizzle-gate:
image: ghcr.io/drizzle-team/gateway:latest
container_name: formEngine-drizzle-gateway
environment:
DATABASE_URL: postgresql://postgres:1234@postgres:5432/postgres
STORE_PATH: /app
restart: on-failure
depends_on:
- postgres
ports:
- "4983:4983"
volumes:
- drizzle_gateway_data:/app
networks:
- app_network
volumes:
postgres_data:
drizzle_gateway_data:
networks:
app_network: