Sign inSign up

alan4103/demo

By alan4103

Updated over 1 year ago

Image
0

57

alan4103/demo repository overview

version: '3.8'

services: miniconda: image: continuumio/miniconda3 # 使用官方 Miniconda3 鏡像 container_name: miniconda-container volumes: - ./workspace:/workspace # 掛載本地目錄到容器 ports: - "8888:8888" # 暴露 Jupyter Notebook 端口 environment: - JUPYTER_TOKEN=mysecretpassword # 設置 Jupyter 訪問密碼 command: > bash -c "conda init bash && jupyter notebook --ip=0.0.0.0 --port=8888 --no-browser --NotebookApp.token=${JUPYTER_TOKEN}"

Tag summary

Content type

Image

Digest

sha256:864423538

Size

19.8 MB

Last updated

over 1 year ago

docker pull alan4103/demo