diff --git a/Apps/Anaconda3/docker-compose.yml b/Apps/Anaconda3/docker-compose.yml new file mode 100644 index 0000000..41ffc70 --- /dev/null +++ b/Apps/Anaconda3/docker-compose.yml @@ -0,0 +1,78 @@ +name: anaconda3 +services: + anaconda3: + container_name: anaconda3 + image: continuumio/anaconda3:2023.09-0 + network_mode: bridge + restart: unless-stopped + environment: + - LANG=C.UTF-8 + - LC_ALL=C.UTF-8 + - PATH=/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin + ports: + - target: 8888 + published: "8888" + protocol: tcp + volumes: + - type: bind + source: /DATA/AppData/$AppID/notebooks + target: /opt/notebooks + command: + - /bin/bash + - -c + - conda install -c conda-forge jupyterlab -y --quiet && jupyter lab + --notebook-dir=/opt/notebooks --ip='*' --port=8888 --no-browser + --allow-root + labels: + icon: https://cdn.jsdelivr.net/gh/LisonEvf/CasaOS-AppStore@main/Apps/Anaconda3/icon.png + x-casaos: + envs: + - container: PATH + description: + en_us: "" + - container: LANG + description: + en_us: "" + - container: LC_ALL + description: + en_us: "" + ports: + - container: "8888" + description: + en_us: JupyterLab + volumes: + - container: /opt/notebooks + description: + en_us: Jupyter notebook directory + zh_cn: Jupyter 笔记目录 +x-casaos: + main: anaconda3 + architectures: + - amd64 + author: LisonEvf + category: AI + developer: LisonEvf + icon: https://cdn.jsdelivr.net/gh/LisonEvf/CasaOS-AppStore@main/Apps/Anaconda3/icon.png + thumbnail: https://cdn.jsdelivr.net/gh/LisonEvf/CasaOS-AppStore@main/Apps/Anaconda3/thumbnail.png + screenshot_link: + - https://cdn.jsdelivr.net/gh/LisonEvf/CasaOS-AppStore@main/Apps/Autobrr/screenshot-1.png + - https://cdn.jsdelivr.net/gh/LisonEvf/CasaOS-AppStore@main/Apps/Autobrr/screenshot-2.png + - https://cdn.jsdelivr.net/gh/LisonEvf/CasaOS-AppStore@main/Apps/Autobrr/screenshot-3.png + scheme: http + hostname: "" + port_map: "8888" + index: / + description: + en_us: Your machine learning Env work with Jupyter Lab + zh_cn: 私有炼丹炉 + tagline: + en_us: Your machine learning Env work with Jupyter Lab + zh_cn: 私有炼丹炉 + tips: + en_us: Your machine learning Env work with Jupyter Lab + zh_cn: 私有炼丹炉 + before_install: + en_us: After installation, please check the token in the container log (Settings - TopRight - Terminal and Logs - Logs). + zh_cn: 安装完成后,请在容器日志(应用-设置-右上角-终端与日志-日志)中查看token。 + title: + en_us: Anaconda3 diff --git a/Apps/Anaconda3/icon.png b/Apps/Anaconda3/icon.png new file mode 100644 index 0000000..763ad80 Binary files /dev/null and b/Apps/Anaconda3/icon.png differ diff --git a/Apps/Anaconda3/screenshot-1.png b/Apps/Anaconda3/screenshot-1.png new file mode 100644 index 0000000..bb04a94 Binary files /dev/null and b/Apps/Anaconda3/screenshot-1.png differ diff --git a/Apps/Anaconda3/screenshot-2.png b/Apps/Anaconda3/screenshot-2.png new file mode 100644 index 0000000..21f733a Binary files /dev/null and b/Apps/Anaconda3/screenshot-2.png differ diff --git a/Apps/Anaconda3/screenshot-3.png b/Apps/Anaconda3/screenshot-3.png new file mode 100644 index 0000000..eb0c267 Binary files /dev/null and b/Apps/Anaconda3/screenshot-3.png differ diff --git a/Apps/Anaconda3/thumbnail.png b/Apps/Anaconda3/thumbnail.png new file mode 100644 index 0000000..4e5d781 Binary files /dev/null and b/Apps/Anaconda3/thumbnail.png differ