-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
45 lines (45 loc) · 1.01 KB
/
docker-compose.yml
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
#
# An example Docker Compose configuration that uses all the provided emulators together.
#
version: "3.9"
services:
cloudtasks-emulator:
image: cloudtasks-emulator
ports:
- target: 9999
published: 9090
protocol: tcp
environment:
GCP_PROJECT: "<GCP_PROJECT>"
EMULATOR_PORT: "9999"
volumes:
- type: bind
source: ".<folder-with-queue.yaml>"
target: /configs
volume:
nocopy: true
datastore-emulator:
image: datastore-emulator
ports:
- target: 9999
published: 8081
protocol: tcp
environment:
GCP_PROJECT: "<GCP_PROJECT>"
EMULATOR_PORT: "9999"
cloudstorage-emulator:
image: cloudstorage-emulator
ports:
- target: 9999
published: 9199
protocol: tcp
environment:
EMULATOR_PORT: "9999"
firebase-emulator:
image: firebase-emulator
ports:
- target: 9999
published: 54897
protocol: tcp
environment:
RDB_EMULATOR_PORT: "9999"