-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.yml
46 lines (44 loc) · 1.04 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
version: '2.3'
services:
wass:
user: ${UID}:${GID}
restart: "no"
image: bergamasco/wass:latest
container_name: wass
volumes:
- type: "bind"
#
# Directory containing the configuration files
#
source: "./WASS_TEST/W07/config"
target: "/DATA_CONF"
- type: "bind"
#
# Directory containing the input images
#
source: "./WASS_TEST/W07/input"
target: "/DATA_IN"
- type: "bind"
#
# Output directory
#
source: "./out"
target: "/DATA_OUT"
depends_on:
- redis
environment:
REDISADDR: redis:6379
ports:
- 8080:8080
networks:
- network1
redis:
restart: always
image: redis
expose:
- 6379
networks:
- network1
networks:
network1:
name: wass-net