services: jupyter: profiles: ["build", "registry"] image: https://git.seccodesmith.pl/seccodesmith/Jupyter-my-own-image.git build: context: . dockerfile: Dockerfile ports: - "8888:8888" volumes: - ./notebooks:/notebooks environment: - JUPYTER_ENABLE_LAB=yes restart: unless-stopped command: > jupyter notebook --ip='0.0.0.0' --port=8888 --no-browser --NotebookApp.token='' --NotebookApp.password='' --allow-root