-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
69 lines (68 loc) · 1.48 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
64
65
66
67
68
69
services:
golangci-lint:
build:
dockerfile: docker/golangci/Dockerfile
volumes:
- ./:/app
working_dir: /app
golang:
build:
dockerfile: docker/golang/Dockerfile
volumes:
- ./:/app
- golang:/go
working_dir: /app
environment:
TF_ACC: true
hadolint:
build:
dockerfile: docker/hadolint/Dockerfile
working_dir: /app
volumes:
- ./:/app
shellcheck:
build:
dockerfile: docker/shellcheck/Dockerfile
working_dir: /app
volumes:
- ./:/app
node:
build:
dockerfile: docker/node/Dockerfile
volumes:
- ./:/app
working_dir: /app
prism_public_cloud:
container_name: prism_public_cloud
build:
dockerfile: docker/prism/Dockerfile
command: >
mock -p 4010 --host 0.0.0.0
${PUBLIC_CLOUD_API_SPEC_URL}
env_file:
- path: .env
extra_hosts:
- "host.docker.internal:host-gateway"
prism_dedicated_server:
container_name: prism_dedicated_server
build:
dockerfile: docker/prism/Dockerfile
command: >
mock -p 4010 --host 0.0.0.0
${DEDICATED_SERVER_API_SPEC_URL}
env_file:
- path: .env
extra_hosts:
- "host.docker.internal:host-gateway"
prism-proxy:
build:
dockerfile: docker/caddy/Dockerfile
volumes:
- ./docker/caddy/prism/Caddyfile:/etc/caddy/Caddyfile
ports:
- "8080:80"
depends_on:
- prism_public_cloud
- prism_dedicated_server
volumes:
golang: