Author: zjffdu Date: Mon Nov 4 01:46:06 2019 New Revision: 1869350 URL: http://svn.apache.org/viewvc?rev=1869350&view=rev Log: Update doc for docker
Modified: zeppelin/site/docs/0.8.2/atom.xml zeppelin/site/docs/0.8.2/rss.xml zeppelin/site/docs/0.8.2/search_data.json zeppelin/site/docs/0.8.2/setup/deployment/docker.html Modified: zeppelin/site/docs/0.8.2/atom.xml URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.8.2/atom.xml?rev=1869350&r1=1869349&r2=1869350&view=diff ============================================================================== --- zeppelin/site/docs/0.8.2/atom.xml (original) +++ zeppelin/site/docs/0.8.2/atom.xml Mon Nov 4 01:46:06 2019 @@ -4,7 +4,7 @@ <title>Apache Zeppelin</title> <link href="http://zeppelin.apache.org/" rel="self"/> <link href="http://zeppelin.apache.org"/> - <updated>2019-10-30T21:27:31+08:00</updated> + <updated>2019-11-04T09:42:17+08:00</updated> <id>http://zeppelin.apache.org</id> <author> <name>The Apache Software Foundation</name> Modified: zeppelin/site/docs/0.8.2/rss.xml URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.8.2/rss.xml?rev=1869350&r1=1869349&r2=1869350&view=diff ============================================================================== --- zeppelin/site/docs/0.8.2/rss.xml (original) +++ zeppelin/site/docs/0.8.2/rss.xml Mon Nov 4 01:46:06 2019 @@ -5,8 +5,8 @@ <description>Apache Zeppelin - The Apache Software Foundation</description> <link>http://zeppelin.apache.org</link> <link>http://zeppelin.apache.org</link> - <lastBuildDate>2019-10-30T21:27:31+08:00</lastBuildDate> - <pubDate>2019-10-30T21:27:31+08:00</pubDate> + <lastBuildDate>2019-11-04T09:42:17+08:00</lastBuildDate> + <pubDate>2019-11-04T09:42:17+08:00</pubDate> <ttl>1800</ttl> Modified: zeppelin/site/docs/0.8.2/search_data.json URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.8.2/search_data.json?rev=1869350&r1=1869349&r2=1869350&view=diff ============================================================================== --- zeppelin/site/docs/0.8.2/search_data.json (original) +++ zeppelin/site/docs/0.8.2/search_data.json Mon Nov 4 01:46:06 2019 @@ -589,7 +589,7 @@ "/setup/deployment/docker.html": { "title": "Apache Zeppelin Releases Docker Images", - "content" : "<!--Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.-->{% include JB/setup %}# Docker Image for Apache Zeppelin Releases ## Overview This document contains instructions about making docker containers for Zeppelin. It mainly provides guidance into how to create, publish and run docker images for zeppelin releases.## Quick Start### Installing DockerYou need to [install docker](https://docs.docker.com/engine/installation/) on your machine.### Running docker image```bashdocker run -p 8080: 8080 --rm --name zeppelin apache/zeppelin: ```* Zeppelin will run at `http://localhost:8080`.If you want to specify `logs` and `notebook` dir, ```bashdocker run -p 8080:8080 --rm -v $PWD/logs:/logs -v $PWD/notebook:/notebook -e ZEPPELIN_LOG_DIR='/logs' -e ZEPPELIN_NOTEBOOK_DIR='/notebook' --name zeppelin apache/zeppelin: # e.g '0.7.1'```### Building dockerfile locally```bashcd $ZEPPELIN_HOMEcd scripts/docker/zeppelin/bindocker build -t my-zeppelin:my-tag ./```", + "content" : "<!--Licensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.-->{% include JB/setup %}# Docker Image for Apache Zeppelin Releases ## Overview This document contains instructions about making docker containers for Zeppelin. It mainly provides guidance into how to create, publish and run docker images for zeppelin releases.## Quick Start### Installing DockerYou need to [install docker](https://docs.docker.com/engine/installation/) on your machine.### Running docker image```bashdocker run -p 8080: 8080 -e ZEPPELIN_ADDR='0.0.0.0' --rm --name zeppelin apache/zeppelin: ```* Zeppelin will run at `http://localhost:8080`.If you want to specify `logs` and `notebook` dir, ```bashdocker run -p 8080:8080 --rm -v $PWD/logs:/logs -v $PWD/notebook:/notebook -e ZEPPELIN_LOG_DIR='/logs' -e ZEPPELIN_NOTEBOOK_DIR='/notebook' --name zeppelin apache/zeppelin: # e.g '0.7.1'```### Building dockerfile locally```bashcd $ZEPPELIN_HOMEcd scripts/docker/zeppelin/bindocker build -t my-zeppelin:my-tag ./```", "url": " /setup/deployment/docker.html", "group": "setup/deployment", "excerpt": "This document contains instructions about making docker containers for Zeppelin. It mainly provides guidance into how to create, publish and run docker images for zeppelin releases." Modified: zeppelin/site/docs/0.8.2/setup/deployment/docker.html URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.8.2/setup/deployment/docker.html?rev=1869350&r1=1869349&r2=1869350&view=diff ============================================================================== --- zeppelin/site/docs/0.8.2/setup/deployment/docker.html (original) +++ zeppelin/site/docs/0.8.2/setup/deployment/docker.html Mon Nov 4 01:46:06 2019 @@ -271,7 +271,7 @@ limitations under the License. <p>You need to <a href="https://docs.docker.com/engine/installation/">install docker</a> on your machine.</p> <h3>Running docker image</h3> -<div class="highlight"><pre><code class="bash language-bash" data-lang="bash">docker run -p 8080:8080 --rm --name zeppelin apache/zeppelin:<release-version> +<div class="highlight"><pre><code class="bash language-bash" data-lang="bash">docker run -p 8080:8080 -e <span class="nv">ZEPPELIN_ADDR</span><span class="o">=</span><span class="s1">'0.0.0.0'</span> --rm --name zeppelin apache/zeppelin:<release-version> </code></pre></div> <ul> <li>Zeppelin will run at <code>http://localhost:8080</code>.</li>