I successfully could launch my server either on aws with plain ubuntu 16.04 and on my dedicated server using docker.
The successfull combination was to use the attached dockerFile and or use the analogue instructions on plain ubuntu.
What I am missing now is to be able to host TWO domains on the same server, I expected that it could work on docker cloning the image and remapping the porst 4010x to say 5010x, but it seems this is not working.
My question is: is it possible to configure TWO domains with their distinct domain-server and assignment-client with different ports in the same server either with plain ubuntu or BETTER using docker? For instance having the first on 40100 and the second on 50100?
Thanks…
My working dockerfile:
FROM ubuntu:16.04
RUN apt-get update && apt-get upgrade -y
RUN apt-get install software-properties-common python-software-properties -y
RUN add-apt-repository ppa:beineri/opt-qt59-xenial -y
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E9A40B0F
RUN add-apt-repository "deb [arch=amd64] https://packages.o2t.info/ xenial o2t-hf" -y
RUN apt-get install apt-transport-https -y
RUN apt-get update -y
RUN apt-get install o2t-hifi-stack-stable -y
RUN apt-get install gcc -y
RUN adduser --system --shell /bin/bash --disabled-password --group --home /home/hifi hifi
EXPOSE 40100 40101 40102 40103
domain-server &
assignment-client --max 10 &