10 lines
192 B
Bash
Executable File
10 lines
192 B
Bash
Executable File
#!/bin/bash
|
|
|
|
docker run --rm \
|
|
--name mumble-web \
|
|
--network unitservices \
|
|
--publish 8181:8080/tcp \
|
|
unit/mumble-web
|
|
|
|
# TODO: After testing is done, the published port can be removed
|