Skip to content
Snippets Groups Projects
Select Git revision
  • 7f6b0e7748eda299975a1ba1570f049e6bd5abaa
  • master default protected
  • L2SS-1957-remove-pcon-control
  • control-single-hba-and-lba
  • stabilise-landing-page
  • all-stations-lofar2
  • L2SS-2357-fix-ruff
  • v0.39.7-backports
  • Move-sdptr-to-v1.5.0
  • fix-build-ubuntu
  • tokens-in-env-files
  • fix-build
  • L2SS-2214-deploy-cdb
  • fix-missing-init
  • add-power-hardware-apply
  • L2SS-2129-Add-Subrack-Routine
  • Also-listen-internal-to-rpc
  • fix-build-dind
  • L2SS-2153--Improve-Error-Handling
  • L2SS-2153-Add-Grpc-Gateway-support
  • L2SS-1970-apsct-lol
  • v0.52.2-rc3 protected
  • v0.52.2-rc2 protected
  • v0.52.2-rc1 protected
  • v0.52.1.1 protected
  • v0.52.1 protected
  • v0.52.1-rc1 protected
  • v0.51.9-6 protected
  • v0.51.9-5 protected
  • v0.51.9-4 protected
  • v0.51.9-3 protected
  • v0.51.9-2 protected
  • v0.51.9-1 protected
  • v0.51.9 protected
  • v0.51.8 protected
  • v0.39.15-wsrttwo protected
  • v0.39.15-wsrt protected
  • v0.39.14-wsrt protected
  • v0.51.6 protected
  • v0.51.5-1 protected
  • v0.51.5 protected
41 results

jupyter.yml

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    jupyter.yml 1.16 KiB
    #
    # Docker compose file that launches Jupyter Notebook for interactive iTango sessions over HTTP.
    #
    # Connect by surfing to http://localhost:8888/
    # View logs through 'docker logs -f -t jupyter'
    #
    # Defines:
    #   - jupyter: Jupyter Notebook with iTango support
    #
    version: '2'
    
    services:
      jupyter:
        build:
            context: jupyter
            args:
                CONTAINER_EXECUTION_UID: ${CONTAINER_EXECUTION_UID}
                SOURCE_IMAGE: ${DOCKER_REGISTRY_HOST}/${DOCKER_REGISTRY_USER}-tango-itango:${TANGO_ITANGO_VERSION}
        container_name: ${CONTAINER_NAME_PREFIX}jupyter
        networks:
          - control
        volumes:
            - ..:/opt/lofar/tango:rw
            - ../jupyter-notebooks:/jupyter-notebooks:rw
            - ${HOME}:/hosthome
        environment:
          - TANGO_HOST=${TANGO_HOST}
        ports:
          - "8888:8888"
        user: ${CONTAINER_EXECUTION_UID}
        working_dir: /jupyter-notebooks
        entrypoint:
          - /usr/local/bin/wait-for-it.sh
          - ${TANGO_HOST}
          - --timeout=30
          - --strict
          - --
          - /usr/bin/tini -- /usr/local/bin/jupyter-notebook --port=8888 --no-browser --ip=0.0.0.0 --allow-root --NotebookApp.token= --NotebookApp.password=
        restart: unless-stopped