{"id":20882440,"url":"https://github.com/1ambda/docker-zeppelin","last_synced_at":"2025-05-12T18:30:55.009Z","repository":{"id":72895071,"uuid":"75714397","full_name":"1ambda/docker-zeppelin","owner":"1ambda","description":"All-in-one Docker image for Apache Zeppelin","archived":false,"fork":false,"pushed_at":"2017-07-12T07:56:30.000Z","size":21,"stargazers_count":8,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-01T09:03:29.952Z","etag":null,"topics":["docker-image","docker-zeppelin","zeppelin"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/1ambda/docker-zeppelin/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/1ambda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-12-06T09:11:33.000Z","updated_at":"2024-05-27T09:28:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"96ae8258-5691-4d95-8f64-e57bc960946c","html_url":"https://github.com/1ambda/docker-zeppelin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1ambda%2Fdocker-zeppelin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1ambda%2Fdocker-zeppelin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1ambda%2Fdocker-zeppelin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1ambda%2Fdocker-zeppelin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/1ambda","download_url":"https://codeload.github.com/1ambda/docker-zeppelin/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253797927,"owners_count":21965980,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker-image","docker-zeppelin","zeppelin"],"created_at":"2024-11-18T07:31:41.940Z","updated_at":"2025-05-12T18:30:55.001Z","avatar_url":"https://github.com/1ambda.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Docker Pulls](https://img.shields.io/docker/pulls/1ambda/docker-zeppelin.svg) ![Docker Stars](https://img.shields.io/docker/stars/1ambda/docker-zeppelin.svg) ![Docker Automated buil](https://img.shields.io/docker/automated/1ambda/zeppelin-docker.svg)\n\n# Deprecated, Please use the official image.\n\nhttps://hub.docker.com/r/apache/zeppelin/\n\nFor example,\n\n```sh\ndocker 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:0.7.2\n```\n\n# docker-zeppelin\n\nAll-in-one Docker image for [Apache Zeppelin](http://zeppelin.apache.org) based on ubuntu with\n\n- **Java 8**\n- **R** with basic packages\n- **Python 2** with basic packages (but it's recommended to use [%python.conda](http://zeppelin.apache.org/docs/0.7.1/interpreter/python.html#conda) in Zeppelin)\n- **miniconda2** for [conda interpreter](http://zeppelin.apache.org/docs/0.7.1/interpreter/python.html#conda) in Zeppelin\n\n## Supported tags\n\n* `0.7.1` (based on [0.7.1](https://github.com/1ambda/docker-zeppelin/blob/master/0.7.1/Dockerfile))\n* `0.7.0` (based on [0.7.0](https://github.com/1ambda/docker-zeppelin/blob/master/0.7.0/Dockerfile))\n* `0.6.2` (based on [0.6.2](https://github.com/1ambda/docker-zeppelin/blob/master/0.6.2/Dockerfile))\n\n## How to run \n\n```bash\n$ docker run -it --name zeppelin --rm -p 8080:8080 1ambda/docker-zeppelin:0.7.1\n```\n\nIf you want to see other interpreters' logs\n\n```bash\n$ docker exec -it zeppelin-0.7.1 bash   # localhost terminal\n$ tail -F logs/*                        # inside docker container \n```\n\nAdditionally, you can set `logs` and `notebook` dirs like\n\n```bash\n$ docker run -it --name zeppelin --rm -p 8080:8080 \\ \n-v $PWD/logs:/logs \\ \n-v $PWD/notebook:/notebook \\\n-e ZEPPELIN_NOTEBOOK_DIR='/notebook' \\\n-e ZEPPELIN_LOG_DIR='/logs' \\\n--name zeppelin 1ambda/docker-zeppelin:0.7.1\n```\n\n## Install additional python, R packages\n\nIt's recommended to use [%python.conda](http://zeppelin.apache.org/docs/0.7.1/interpreter/python.html#conda) in Zeppelin, instead of installing packages for local python\n\n```bash\n$ docker exec -it zeppelin-0.7.1 bash   # localhost terminal\n\n# install python packages inside docker container\n$ pip install flask\n\n# install R packages inside docker container\n$ R -e \"install.packages('knitr', repos='http://cran.us.r-project.org')\"\n```\n\n## Tips\n\n### Networking with systems on other hosts\n\nDocker container can't connect external system if they are not on the same docker network. (e.g containers launched by docker-compose)  \nSo if you want to connect other systems you can use `--net=host` option, but [it might not work for OSX](https://github.com/docker/for-mac/issues/68) \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1ambda%2Fdocker-zeppelin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F1ambda%2Fdocker-zeppelin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1ambda%2Fdocker-zeppelin/lists"}