Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Mumble Web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Armin Co
Mumble Web
Commits
a0f88a15
Unverified
Commit
a0f88a15
authored
Jul 28, 2020
by
Armin Co
Browse files
Options
Downloads
Patches
Plain Diff
Adding production image
parent
3a34a4be
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Dockerfile
+9
-0
9 additions, 0 deletions
Dockerfile
README.md
+1
-1
1 addition, 1 deletion
README.md
docker-compose.production.yml
+23
-0
23 additions, 0 deletions
docker-compose.production.yml
with
33 additions
and
1 deletion
Dockerfile
+
9
−
0
View file @
a0f88a15
...
@@ -46,3 +46,12 @@ FROM alpine:edge AS websockify
...
@@ -46,3 +46,12 @@ FROM alpine:edge AS websockify
RUN
echo
http://nl.alpinelinux.org/alpine/edge/testing
>>
/etc/apk/repositories
&&
\
RUN
echo
http://nl.alpinelinux.org/alpine/edge/testing
>>
/etc/apk/repositories
&&
\
apk add
--no-cache
websockify
apk add
--no-cache
websockify
EXPOSE
64737
EXPOSE
64737
# websockify standalone
FROM
websockify
AS
websockify-standalone
RUN
apk add
--no-cache
tini
EXPOSE
443
ENTRYPOINT
[ "/sbin/tini", "--"]
ENV
MUMBLE_SERVER=mumble.cvh-server.de:64738
CMD
[ "websockify --cert=/home/node/certs/cert.crt --key=/home/node/certs/cert.key --ssl-only --ssl-target --web=/home/node/dist 443 "$MUMBLE_SERVER"" ]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
README.md
+
1
−
1
View file @
a0f88a15
...
@@ -48,7 +48,7 @@ eine Verbindung zwischen einem Mumble-Server (Murmur) und der Webanwendung herzu
...
@@ -48,7 +48,7 @@ eine Verbindung zwischen einem Mumble-Server (Murmur) und der Webanwendung herzu
## testing
## testing
Um die Mumble-Web Anwendung zu testen kann sie lokal ausgeführt werden.
Um die Mumble-Web Anwendung zu testen kann sie lokal ausgeführt werden.
Hierzu steht ein docker-compose
sc
ript bereit, um alle notwendigen
Services
passend zu starten.
Hierzu steht ein docker-compose
Sk
ript bereit, um alle notwendigen
Container
passend zu starten.
Das Script stellt einen eigenen Mumble-Server
<https://github.com/coppit/docker-mumble-server>
Das Script stellt einen eigenen Mumble-Server
<https://github.com/coppit/docker-mumble-server>
bereit, dieser läuft auf dem Port 64738 und hat den Hostnamen
`murmur`
.
bereit, dieser läuft auf dem Port 64738 und hat den Hostnamen
`murmur`
.
...
...
This diff is collapsed.
Click to expand it.
docker-compose.production.yml
0 → 100644
+
23
−
0
View file @
a0f88a15
version
:
'
3.4'
services
:
mumble-web-nginx
:
build
:
context
:
./
target
:
websockify-standalone
container_name
:
mumble-web
environment
:
-
MUMBLE_SERVER=mumble.cvh-server.de:64738
ports
:
-
443:443
volumes
:
-
../letsencrypt-webserver/reverse_proxy/keys:/home/node/certs:ro
restart
:
unless-stopped
murmur
:
container_name
:
murmur
image
:
coppit/mumble-server
ports
:
-
64738:64738
volumes
:
-
./murmur:/data
restart
:
unless-stopped
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment