-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdocker-compose.yml
41 lines (39 loc) · 1 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
# Copyright © 2018 CA. All rights reserved. CA Confidential. Please see License.txt file for applicable usage rights and restrictions.
version: '3'
services:
action-echo:
image: tdm/action-echo:1.0
hostname: action-echo
environment:
- 'ACTION_SECRET=123'
ports:
- '8543:8443'
action-download:
image: tdm/action-download:1.0
hostname: action-download
environment:
- 'ACTION_SECRET=123'
ports:
- '8643:8443'
action-db-log:
image: tdm/action-db-log:1.0
hostname: action-db-log
environment:
- 'ACTION_SECRET=123'
ports:
- '8743:8443'
action-download-send:
image: tdm/action-download-send:1.0
hostname: action-download-send
environment:
- 'ACTION_SECRET=123'
- 'smtpHost=smtphost'
- 'smtpPort=2525'
ports:
- '8843:8443'
# Note: assuming that TDM Portal containers run in tdmweb network.
# If use use a different name, change the network.
networks:
default:
external:
name: tdmweb