From 76b6081a351c4078e07986129fe78a65b3eaa2b4 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Wed, 15 Apr 2020 01:11:54 +0300 Subject: [PATCH] Source for scripts that start multiple processes in the same docker container --- start/image+container.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/start/image+container.txt b/start/image+container.txt index 756c87f..f2c16f7 100644 --- a/start/image+container.txt +++ b/start/image+container.txt @@ -2,4 +2,7 @@ docker image build -t "react-redux-course:1.0.19" . docker run -p 5050:80 -it react-redux-course:1.0.19 Multiple ports: -docker run -p 5050:80 -p 3001:3001 -it react-redux-course:1.0.20 \ No newline at end of file +docker run -p 5050:80 -p 3001:3001 -it react-redux-course:1.0.20 + + +Source for scripts that start multiple processes in the same docker container: https://docs.docker.com/config/containers/multi-service_container/ \ No newline at end of file