Skip to content

Commit

Permalink
Fix paths in docs and update info about docker (lynckia#1515)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcague authored Dec 4, 2019
1 parent a01bc77 commit c66afba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/custom_theme/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<link href="{{ base_url }}/css/base.css" rel="stylesheet">
<link rel="stylesheet" href="{{ base_url }}/css/highlight.css">
{%- for path in config['extra_css'] %}
<link href="/{{ path }}" rel="stylesheet">
<link href="{{ base_url}}/{{ path }}" rel="stylesheet">
{%- endfor %}

<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
Expand Down Expand Up @@ -73,7 +73,7 @@ <h1>Architecture</h1>
<script data-main="{{ base_url }}/search/search.js" src="{{ base_url }}/search/require.js"></script>
<script src="{{ base_url }}/js/base.js"></script>
{%- for path in config['extra_javascript'] %}
<script src="/{{ path }}"></script>
<script src="{{ base_url }}/{{ path }}"></script>
{%- endfor %}

<div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="Search Modal" aria-hidden="true">
Expand Down
2 changes: 1 addition & 1 deletion doc/custom_theme/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="https://github.com/ging/licode" class="github-logo hidden-desktop"><img src="/img/github-logo.png"></a>
<a href="https://github.com/ging/licode" class="github-logo hidden-desktop"><img src="{{ base_url }}/img/github-logo.png"></a>
{%- endif %}
</div>

Expand Down
2 changes: 1 addition & 1 deletion doc/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Both options require that you have [docker](https://docs.docker.com/installation

The easiest way to run licode is to use the [image we provide](https://hub.docker.com/r/lynckia/licode/) in Docker Hub. In this case you have only to execute the run command. But now the image name is lynckia/licode:*version* where `version` is the release you want to use:

MIN_PORT=30000; MAX_PORT=30050; sudo docker run --name licode -p 3000:3000 -p $MIN_PORT-$MAX_PORT:$MIN_PORT-$MAX_PORT/udp -p 3001:3001 -p 8080:8080 -e "MIN_PORT=$MIN_PORT" -e "MAX_PORT=$MAX_PORT" -e "PUBLIC_IP=XX.XX.XX.XX" lynckia/licode
MIN_PORT=30000; MAX_PORT=30050; sudo docker run --name licode -p 3000:3000 -p $MIN_PORT-$MAX_PORT:$MIN_PORT-$MAX_PORT/udp -p 3001:3001 -p 8080:8080 -e "MIN_PORT=$MIN_PORT" -e "MAX_PORT=$MAX_PORT" -e "PUBLIC_IP=XX.XX.XX.XX" -e "NETWORK_INTERFACE=eth0" lynckia/licode

> **Note**
> If you do not specify a version you are pulling from `latest` by default.
Expand Down

0 comments on commit c66afba

Please sign in to comment.