-
-
Notifications
You must be signed in to change notification settings - Fork 127
Expand file tree
/
Copy pathcompose.yml
More file actions
44 lines (44 loc) · 894 Bytes
/
compose.yml
File metadata and controls
44 lines (44 loc) · 894 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
43
44
services:
server:
build: test-integration/docker/server
volumes:
- type: volume
source: keygen
target: /keys
tmpfs:
- /tmp
ports:
- "10022:22"
- "10080:80"
- "10443:443"
client:
build:
context: test-integration/docker/client
args:
JAVA: 17
JDKVER: jdk_17.0.14.0.0+7-1
GRADLE: 8.13
depends_on:
server:
condition: service_started
volumes:
- type: bind
source: .
target: /code
- type: volume
source: keygen
target: /keys
read_only: true
- type: volume
source: gradle-cache
target: /gradle-cache
- /workdir
tmpfs:
- /tmp:mode=1777
environment:
DURATION: ${DURATION:-2400}
TYPE: ${TYPE:-GIT}
user: "${UID:-1000}:${GID:-1000}"
volumes:
keygen:
gradle-cache: