N
N
noute2020-03-29 19:12:45
linux
noute, 2020-03-29 19:12:45

How to specify ip in docker-compose file for bbb?

Hi everyone Don't kick too hard. Just started getting into it.
Can't write docker-compose.file for Big Blue Button.
https://github.com/bigbluebutton/docker

There is a Dockerfile big blue button

, it is launched via
Docker run docker run -p 80:80/tcp -p 1935:1935/tcp -p 5066:5066/tcp -p 32730-32768: 32730-32768/udp -p 2202:2202 --cap-add=NET_ADMIN --name bigbluebutton bigbluebutton/bigbluebutton -h MyIP

I wrote a docker-compose file under this case everything starts and stops.
But there is a problem, you need to specify the ip address, since Docker run has the -h switch where the IP is specified.
And in the logs you can see the message
BigBlueButton is now starting up at this address

http:// MyIP
But when I do it through docker-compose, there is no ip there and because of this, the service itself does not start, although the container starts.

BigBlueButton is now starting up at this address

http://

docker-compose.yml

version: '3'
services:
  bigbluebutton:
    #build: /opt/bbb
    #container_name: bigbluebutton
    image: bigbluebutton/bigbluebutton
    ports:
       - "80:80"
    expose:
       - "1935/tcp"
       - "5066/tcp"
       - "2202"


Docker File
FROM ubuntu:16.04
MAINTAINER [email protected]

ENV DEBIAN_FRONTEND noninteractive
# RUN echo 'Acquire::http::Proxy "http://192.168.2.69:3142";'  > /etc/apt/apt.conf.d/01proxy
RUN apt-get update && apt-get install -y wget apt-transport-https

RUN echo "deb http://ubuntu.bigbluebutton.org/xenial-200 bigbluebutton-xenial main " | tee /etc/apt/sources.list.d/bigbluebutton.list
RUN wget http://ubuntu.bigbluebutton.org/repo/bigbluebutton.asc -O- | apt-key add -

RUN apt-get install -y language-pack-en
RUN update-locale LANG=en_US.UTF-8

RUN apt-get update && apt-get install -y wget software-properties-common

RUN add-apt-repository ppa:jonathonf/ffmpeg-4 -y
RUN LC_CTYPE=en_US.UTF-8 add-apt-repository ppa:rmescandon/yq -y
RUN apt-get update && apt-get -y dist-upgrade

# -- Setup tomcat7 to run under docker
RUN apt-get install -y \
  haveged    \
  net-tools  \
  supervisor \
  sudo       \
  tomcat7

RUN sed -i 's|securerandom.source=file:/dev/random|securerandom.source=file:/dev/urandom|g'  /usr/lib/jvm/java-8-openjdk-amd64/jre/lib/security/java.security
ADD mod/tomcat7 /etc/init.d/tomcat7
RUN chmod +x /etc/init.d/tomcat7

# -- Install BigBlueButton
RUN echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections
RUN apt-get install -y bigbluebutton
RUN apt-get install -y bbb-demo

# -- Install mongodb (for HTML5 client)
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6
RUN echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list
RUN sudo apt-get update && sudo apt-get install -y mongodb-org curl

# -- Install nodejs (for HTML5 client)
RUN apt-get install -y apt-transport-https
RUN curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | apt-key add -
RUN echo 'deb http://deb.nodesource.com/node_8.x xenial main' > /etc/apt/sources.list.d/nodesource.list
RUN echo 'deb-src http://deb.nodesource.com/node_8.x xenial main' >> /etc/apt/sources.list.d/nodesource.list
RUN apt-get update && apt-get install -y nodejs

# -- Install HTML5 client
RUN apt-get install -y bbb-html5

RUN apt-get update
RUN apt-get install -y coturn xmlstarlet vim mlocate

# -- Install supervisor to run all the BigBlueButton processes (replaces systemd)
RUN apt-get install -y supervisor
RUN mkdir -p /var/log/supervisor
ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf

# -- Modify FreeSWITCH event_socket.conf.xml to listen to IPV4
ADD mod/event_socket.conf.xml /opt/freeswitch/etc/freeswitch/autoload_configs
ADD mod/external.xml          /opt/freeswitch/conf/sip_profiles/external.xml

# RUN apt-get install -y bbb-etherpad

# -- Finish startup
ADD setup.sh /root/setup.sh
ENTRYPOINT ["/root/setup.sh"]
CMD []

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Andrew, 2020-03-29
@deepblack

Each of these is a single value, analogous to its docker run counterpart. Note that mac_address is a legacy option.

Link
-h, --hostname string Container host name >>> hostname: yourhostname
version: '3'
services:
  bigbluebutton:
    image: bigbluebutton/bigbluebutton
    hostname: yourhostname
    ports:
       - "80:80"
    expose:
       - "1935/tcp"
       - "5066/tcp"
       - "2202"

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question