Docker compose untuk jupyter-notebook

Beberapa saat ini saya sedang mencoba bahasa pemograman python dan saya memakai jupyter-notebook agar lebih mudah untuk coba coba

Ada beberapa Docker image untuk jupyter notebook tapi saat ini saya cukup menggunakan minimal image, ini dia template untuk docker composenya

version: '3.6'
services:
  notebook:
    container_name: notebook
    image: jupyter/minimal-notebook:2023-05-30
    ports:
      - 8888:8888
    volumes:
      - ./data:/home/jovyan/work
    environment:
      JUPYTER_TOKEN: password