-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdev-compose.yml
More file actions
39 lines (38 loc) · 1019 Bytes
/
dev-compose.yml
File metadata and controls
39 lines (38 loc) · 1019 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
services:
efspjava:
extends:
file: docker-compose.yml
service: efspjava
build:
target: build
args:
- CI_COMMIT_SHA
# Necessary b/c docassemble is external to the docker network
ports: !override
- target: 9009
published: 9100
extra_hosts:
- "host.docker.internal:host-gateway"
depends_on:
- "db"
volumes:
# Gets exact SOAP envelopes sent when running locally with wireshark
- type: bind
source: .
target: /tmp/secrets
- type: bind
source: target
target: /tmp/jacoco
# Automatically rebuild server on file changes. With some files, you still
# need to stop and `build` again (e.g. client_sign.properties)
# TODO(brycew): add a `sync` action for config files, make sure we load them when accessed
develop:
watch:
- action: rebuild
path: ./proxyserver
db:
extends:
file: docker-compose.yml
service: db
volumes:
data-volume: