-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
42 lines (38 loc) · 991 Bytes
/
docker-compose.yaml
File metadata and controls
42 lines (38 loc) · 991 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
---
services:
ransidble:
build:
context: .
dockerfile: build/Dockerfile
args:
- GOLANG_VERSION=${GOLANG_VERSION}
environment:
- RANSIDBLE_SERVER_WORKER_POOL_SIZE=2
ci:
build:
context: .
dockerfile: build/Dockerfile.ci
args:
- GOLANG_VERSION=${GOLANG_VERSION}
- GO_TOOL_ERRCHECK_VERSION=${GO_TOOL_ERRCHECK_VERSION:-latest}
- GO_TOOL_GOLANGCI_LINT_VERSION=${GO_TOOL_GOLANGCI_LINT_VERSION:-latest}
- GO_TOOL_GOLINT_VERSION=${GO_TOOL_GOLINT_VERSION:-latest}
- GO_TOOL_GOSEC_VERSION=${GO_TOOL_GOSEC_VERSION:-latest}
- GO_TOOL_STATICCHECK_VERSION=${GO_TOOL_STATICCHECK_VERSION:-latest}
privileged: true
volumes:
- .:/usr/src/app
command:
- tail
- -f
- /dev/null
ransidble-server:
build:
context: .
dockerfile: build/Dockerfile.ansible
volumes:
- .:/usr/src/app
command:
- tail
- -f
- /dev/null