-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
36 lines (34 loc) · 1.61 KB
/
docker-compose.yml
File metadata and controls
36 lines (34 loc) · 1.61 KB
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
###############################################################################
# Licensed Materials - Property of IBM #
# (C) Copyright IBM Corp. 2021. All Rights Reserved. #
# US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. #
###############################################################################
version: '3'
services:
#############################################################################################################
# The "pc" container is running the Workflow Process Service (authoring trial) image
#############################################################################################################
pc:
image: icr.io/icp4ba/workflow-ps-trial:24.0.0-amd64
container_name: pc
hostname: pc
ports:
- "9443:9443"
stop_grace_period: 2m
environment:
- LICENSE=accept
###########################################################################################################
# EXTERNAL_HOSTNAME must not be localhost if you want to access Workplace or BA Studio from a web browser
# which is not running on the docker host.
# In such case, replace EXTERNAL_HOSTNAME with the actual hostname of the docker host.
###########################################################################################################
- EXTERNAL_HOSTNAME=localhost
- EXTERNAL_HTTPS_PORT=9443
# PFS properties
- PFS_ENABLE=false
deploy:
resources:
limits:
memory: 2048M
reservations:
memory: 2048M