This repository has been archived by the owner on May 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Hey, could not run this in ubutu as it was, now it builds and runs. I also created an build script #6
Open
gabrielsallum
wants to merge
8
commits into
lucaspiller:master
Choose a base branch
from
gabrielsallum:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Hey, could not run this in ubutu as it was, now it builds and runs. I also created an build script #6
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
5e6ad49
now working using:\n docker run -d -p 5060:5060/tcp -p 5060:506…
c20c1f3
adding a build script
7351d10
adding the run script
7036f18
adding the run script
0a90aaf
Cleaning up Grammar in the readme.
gabrielsallum 0a023a4
fixed problem on running
gabrielsallum f75b78b
was missing the directive, now finally works...
gabrielsallum f04f357
adding pymod support and exposing on the tcp port
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
FROM ubuntu | ||
FROM debian:8 | ||
RUN echo "deb http://files.freeswitch.org/repo/deb/debian/ jessie main" > /etc/apt/sources.list.d/99FreeSWITCH.test.list | ||
RUN apt-get update | ||
RUN apt-get upgrade -y | ||
RUN apt-get install -y --no-install-recommends build-essential autoconf automake libtool zlib1g-dev libjpeg-dev libncurses-dev libssl-dev libcurl4-openssl-dev python-dev libexpat-dev libtiff-dev libx11-dev wget git | ||
RUN git clone -b v1.2.stable https://freeswitch.org/stash/scm/fs/freeswitch.git /usr/local/src/freeswitch | ||
RUN cd /usr/local/src/freeswitch; ./bootstrap.sh -j | ||
RUN cd /usr/local/src/freeswitch; ./configure --prefix=/opt/freeswitch | ||
RUN cd /usr/local/src/freeswitch; make; make install | ||
RUN cd /usr/local/src/freeswitch; make all cd-sounds-install cd-moh-install | ||
RUN wget -O - http://files.freeswitch.org/repo/deb/debian/key.gpg |apt-key add - | ||
RUN apt-get update | ||
RUN DEBIAN_FRONTEND=none APT_LISTCHANGES_FRONTEND=none apt-get install -y --force-yes freeswitch-video-deps-most | ||
RUN git config --global pull.rebase true | ||
RUN git clone https://freeswitch.org/stash/scm/fs/freeswitch.git freeswitch.git | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Use the |
||
RUN cd freeswitch.git; ./bootstrap.sh -j; perl -i -pe 's/#applications\/mod_av/applications\/mod_av/g' modules.conf | ||
RUN cd freeswitch.git; ./configure --prefix=/opt/freeswitch ; make; make cd-sounds-install cd-moh-install samples pymod install ; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docker build -t gps:docker-freeswitch . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
docker run -d -p 5060:5060/tcp -p 5060:5060/udp -p 16384:16384/udp -p 16385:16385/udp -p 16386:16386/udp -p 16387:16387/udp -p 16388:16388/udp -p 16389:16389/udp -p 16390:16390/udp -p 16391:16391/udp -p 16392:16392/udp -p 16393:16393/udp -p 8021:8021 gps:docker-freeswitch /opt/freeswitch/bin/freeswitch |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pointless. See jchaney/owncloud#12