From ac20539b05e0222575105a41f28d69c52d0a4829 Mon Sep 17 00:00:00 2001 From: Marco De Donno Date: Sun, 1 Oct 2017 19:08:17 +0200 Subject: [PATCH] Split the docker image into two containers : http and https --- docker-compose.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 28deda5..507b80b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,9 +1,19 @@ version: '2' services: - tps: + tps_http: build: . - hostname: TPSServe + hostname: TPSServe_http + + restart: always + + ports: + - 5001:5000 + + tps_https: + build: . + + hostname: TPSServe_https volumes: - ./certs:/certs -- GitLab