-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
39 lines (36 loc) · 975 Bytes
/
docker-compose.yaml
File metadata and controls
39 lines (36 loc) · 975 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: groonga/pgroonga:latest-alpine-16
container_name: ger2-postgres-server
volumes:
- postgres_data:/var/lib/postgresql/data
- ./postgres/init.d:/docker-entrypoint-initdb.d
ports:
- 7321:5432
environment:
- POSTGRES_DB=ger2
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
google-cloud-storage:
image: fsouza/fake-gcs-server:latest
container_name: ger2-gcs-mock
ports:
- 4443:4443
command: [ "-scheme", "http", "-port", "4443" ]
volumes:
- ./packages/scripts/seed/src/gcs/ger2/:/data/ger2/
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:4443/storage/v1/b/"]
interval: 5s
timeout: 10s
retries: 3
redis:
image: redis:7-alpine
container_name: ger2-keydb-server
command: redis-server --appendonly no
ports:
- 11329:6379
volumes:
- ./keydb-data:/data
volumes:
postgres_data: