-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
38 lines (35 loc) · 1016 Bytes
/
docker-compose.yaml
File metadata and controls
38 lines (35 loc) · 1016 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
version: '3.1'
services:
wise-demo-ubuntu-2204:
environment:
- CONTAINER_NAME=${CONTAINER_NAME}
- HOST_JOBS_FOLDER=${HOST_JOBS_FOLDER}
build:
context: .
args:
HOST_JOBS_FOLDER: $HOST_JOBS_FOLDER
dockerfile: wise_ubuntu_2204.Dockerfile
image: wise_ubuntu_2204_demo_latest
depends_on:
wise-demo-ubuntu-2004:
condition: service_completed_successfully
container_name: ${CONTAINER_NAME}-U-2204
ports:
- ${WISE_EXTERNAL_PORT}:3000
volumes:
- ${HOST_DATA_FOLDER}:/root/app_data
wise-demo-ubuntu-2004:
environment:
- CONTAINER_NAME=${CONTAINER_NAME}
- HOST_JOBS_FOLDER=${HOST_JOBS_FOLDER}
build:
context: .
args:
HOST_JOBS_FOLDER: $HOST_JOBS_FOLDER
dockerfile: wise_ubuntu_2004.Dockerfile
image: wise_ubuntu_2004_demo_latest
container_name: ${CONTAINER_NAME}-U-2004
ports:
- ${WISE_EXTERNAL_PORT}:3000
volumes:
- ${HOST_DATA_FOLDER}:/root/app_data