-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
46 lines (42 loc) · 892 Bytes
/
docker-compose.yml
File metadata and controls
46 lines (42 loc) · 892 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
40
41
42
43
44
45
46
services:
ruby:
build: .
entrypoint: ./entrypoint.rb
environment:
DOCKER: 'true'
SELENIUM_HOST: selenium
SELENIUM_PORT: 4444
COREPACK_ENABLE_DOWNLOAD_PROMPT: '0'
expose:
- 9090 # Envoy connects to ruby gRPC Server on 9090
volumes:
- .:/app
depends_on:
- envoy
- selenium
# Used as a reference gRPC-Web server to test against
envoy:
image: envoyproxy/envoy:v1.33-latest
expose:
- 8080
volumes:
- ./spec/support/envoy.yml:/etc/envoy/envoy.yaml
protoc:
platform: linux/amd64
build:
context: .
dockerfile: Dockerfile.protoc
platforms:
- linux/amd64
volumes:
- ./spec:/defs
selenium:
image: selenium/standalone-chromium
restart: unless-stopped
expose:
- 4444
- 5900
- 7900
networks:
default:
driver: bridge