-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-grpc-debug.yaml
More file actions
61 lines (56 loc) · 1.24 KB
/
docker-compose-grpc-debug.yaml
File metadata and controls
61 lines (56 loc) · 1.24 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
services:
primary:
image: postgres
environment:
- POSTGRES_USER=testuser
- POSTGRES_PASSWORD=password
- POSTGRES_DB=testdb
volumes:
- grpc-pg-vol-debug:/var/lib/postgresql/data
ports:
- 5432:5432
healthcheck:
test: ['CMD-SHELL', 'pg_isready']
interval: 10s
timeout: 5s
retries: 5
pgadmin:
container_name: pgadmin4_container
image: dpage/pgadmin4
restart: always
environment:
PGADMIN_DEFAULT_EMAIL: admin@admin.com
PGADMIN_DEFAULT_PASSWORD: root
ports:
- '5050:80'
volumes:
- grpc-pgadmin-data:/var/lib/pgadmin
depends_on:
- primary
redis:
image: redis
ports:
- 6379:6379
environment:
- ALLOW_EMPTY_PASSWORD=yes
minio:
image: docker.io/bitnami/minio:2022
ports:
- '9000:9000'
- '9001:9001'
environment:
- MINIO_ROOT_USER=minio-root-user
- MINIO_ROOT_PASSWORD=minio-root-password
volumes:
- grpc-minio_data:/data
envoy:
build:
context: ./grpc-dev-envoy-proxy
dockerfile: Dockerfile.macos
# dockerfile: Dockerfile-tls.macos # for tls
ports:
- 8000:8000
volumes:
grpc-pg-vol-debug:
grpc-pgadmin-data:
grpc-minio_data: