Skip to content
Snippets Groups Projects
Select Git revision
  • 647778f49ebea1811585109c8f531214ceba2217
  • master default protected
  • dev_2022
  • patch-1
  • develop
  • 50-use-ubuntus-libhidapi
  • issue-highLevelDispatch
  • issue-highLevelDesign
  • issue-motorStartBug
  • issue-commandLayerDesign
  • v1.0
  • v0.4-rc.13
  • v0.4-rc.12
  • v0.4-rc.11
  • v0.4-rc.10
  • v0.4-rc.9
  • v0.3-rc.8
  • v0.3-rc.7
  • v0.3-rc.6
  • v0.3-rc.5
  • v0.3-rc.4
  • v0.3-rc.3
  • v0.3-rc.2
  • v0.3-rc.1
  • v0.3-rc
  • v0.2
  • v0.1.1
  • v0.1
28 results

Sensor.rst

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    startFenicsWithDockerAndJupyter.sh 531 B
    #!/bin/bash
    
    docker run -w /home/fenics -v $(pwd):/home/fenics/shared -d -p 127.0.0.1:8888:8888 quay.io/fenicsproject/stable:current 'jupyter-notebook --ip=0.0.0.0'
    
    # docker run --name notebook -w /home/fenics -v $(pwd):/home/fenics/shared -d -p 127.0.0.1:8888:8888 quay.io/fenicsproject/stable:current 'jupyter-notebook --ip=0.0.0.0'
    
    # Start previously created container
    # docker start notebook
    
    # Connect to a Docker container
    # $ docker exec -it notebook bash
    
    # Attach to stdout of docker container
    # $ docker attach notebook