-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
65 lines (54 loc) · 1.39 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: "3.6"
services:
java:
build:
context: .
dockerfile: openapi-generator/Dockerfile
volumes:
- .m2:/root/.m2
- .:/code
working_dir: /code
network_mode: host
csharp:
build:
context: .
dockerfile: scripts/Dockerfile-csharp
volumes:
- .:/code
working_dir: /code
network_mode: host
python:
image: python:3
volumes:
- .:/code
working_dir: /code
network_mode: host
php:
image: composer
volumes:
- .:/code
working_dir: /code
network_mode: host
influxdb_v2:
image: influxdb:latest
ports:
- "9999:9999"
command: influxd --reporting-disabled
download-oss-swagger:
image: curlimages/curl:7.76.1
volumes:
- .:/code
working_dir: /code
command: curl https://raw.githubusercontent.com/influxdata/openapi/master/contracts/oss.yml --output /code/oss.yml
download-cloud-swagger:
image: curlimages/curl:7.76.1
volumes:
- .:/code
working_dir: /code
command: curl https://raw.githubusercontent.com/influxdata/openapi/master/contracts/cloud.yml --output /code/cloud.yml
download-invocable-scripts:
image: curlimages/curl:7.76.1
volumes:
- .:/code
working_dir: /code
command: curl https://raw.githubusercontent.com/influxdata/openapi/master/contracts/invocable-scripts.yml --output /code/invocable-scripts.yml