generated from pulumi/pulumi-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.yml
61 lines (54 loc) · 1.12 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
networks:
pulumi-baremetal:
x-sdk-test: &sdk-test
depends_on:
- provisioner-test
restart: 'no'
networks:
- pulumi-baremetal
volumes:
- /var/run/docker.sock:/var/run/docker.sock
services:
provisioner-test:
build:
context: .
dockerfile: provider/cmd/provisioner/Dockerfile
target: test
args:
- VERSION=${VERSION}
environment:
- GRPC_GO_LOG_SEVERITY_LEVEL=info
command: >
--network tcp4 --address 0.0.0.0:4200 --verbose
ports:
- 4200
networks:
- pulumi-baremetal
dotnet-test:
<<: *sdk-test
build:
context: .
dockerfile: tests/sdk/Dockerfile
args: [ SDK=dotnet ]
target: dotnet
go-test:
<<: *sdk-test
build:
context: .
dockerfile: tests/sdk/Dockerfile
args: [ SDK=go ]
target: base
nodejs-test:
<<: *sdk-test
build:
context: .
dockerfile: tests/sdk/Dockerfile
args: [ SDK=nodejs ]
target: nodejs
python-test:
<<: *sdk-test
build:
context: .
dockerfile: tests/sdk/Dockerfile
args: [ SDK=python ]
target: base