{"id":43099991,"url":"https://github.com/feelpp/docker","last_synced_at":"2026-01-31T17:10:33.957Z","repository":{"id":44421292,"uuid":"44000040","full_name":"feelpp/docker","owner":"feelpp","description":":whale: Docker 4 Feel++","archived":false,"fork":false,"pushed_at":"2025-08-14T00:04:33.000Z","size":146901,"stargazers_count":5,"open_issues_count":12,"forks_count":3,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-08-14T00:22:56.035Z","etag":null,"topics":["docker","feelpp","paraview"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/feelpp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2015-10-10T07:36:46.000Z","updated_at":"2025-07-12T11:44:25.000Z","dependencies_parsed_at":"2024-01-08T23:27:40.842Z","dependency_job_id":"0e194839-4224-4b2f-8cbf-7529988efd68","html_url":"https://github.com/feelpp/docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/feelpp/docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feelpp%2Fdocker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feelpp%2Fdocker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feelpp%2Fdocker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feelpp%2Fdocker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feelpp","download_url":"https://codeload.github.com/feelpp/docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feelpp%2Fdocker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28948358,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T14:26:55.697Z","status":"ssl_error","status_checked_at":"2026-01-31T14:26:52.545Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","feelpp","paraview"],"created_at":"2026-01-31T17:10:33.330Z","updated_at":"2026-01-31T17:10:33.948Z","avatar_url":"https://github.com/feelpp.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker 4 Feel++\n\n[![Feel++ Env](https://github.com/feelpp/docker/actions/workflows/feelpp-env.yml/badge.svg)](https://github.com/feelpp/docker/actions/workflows/feelpp-env.yml)\n\n## What can you generate with this repository ?\n\nUsing docker and docker-compose, you will currently generate the following images:\n- feelpp/feelpp-env:latest\n\n## In-situ visulization with ParaView\n\n### In a nutshell\n\n```\n# This setup is valid if you are launching ParaView \n# and docker on the same computer.\n# You must ensure that your ParaView version matches the one used in docker\n# (It should be the latest available)\n\n# Download Feel++ docker image\nshell\u003e docker pull feelpp/develop\n```\n\nFrom here, you have 2 ways to proceed:   \n   \n* Directly use the network of the host:\n\n```\n# Launch a pvserver\nshell\u003e pvserver\n# Launch ParaView, connect to the pvserver and enable Catalyst in the interface \nshell\u003e paraview\n\n# Run the feelpp image\nshell\u003e docker run -ti --net=host feelpp/develop\n\n# Run the application\ndockershell\u003e mpirun -np 2 feelpp_qs_laplacian_2d --config-file src/feelpp/quickstart/laplacian/qs_laplacian_2d.cfg --exporter.format vtk --exporter.vtk.insitu.enable 1\n```\n\n* Use the port export feature from docker (safer regarding to security):\n\n```\n# Run feelpp image\nshell\u003e docker run -ti -P 11111:11111 feelpp/develop\n\n# Launch tmux to multiplex terminals\ndockershell\u003e tmux\n# Launch a pvserver in the first terminal\ndockershell1\u003e pvserver\n\n# Launch ParaView and connect to the pvserver\nshell\u003e paraview\n\ndockershell2\u003e mpirun -np 2 feelpp_qs_laplacian_2d --config-file src/feelpp/quickstart/laplacian/qs_laplacian_2d.cfg --exporter.format vtk --exporter.vtk.insitu.enable 1\n```\n\n### Full description\nThe dev-env image builds the latest stable version of ParaView with Catalyst enabled for In-Situ visualization.\nThe develop image uses the dev-env base image and enables In-Situ visualization.\n\nTo use In-Situ visulization with a Feel++ application that you build in a container based on the develop image, you first have to configure the container to export ports.   \nThe first time you launch the container with `docker run`, you must use the `-p` option to redirect a container port to the host machine. The option syntax is as follows in the simple case: `-p hostPost:containerPort`. In this case, you will redirect the `containerPort` port to the `hostPort` port.   \nWe advise you to use a pvserver to use In-Situ. The default port pvserver uses is 11111, thus to export this port when running the container, you can do:\n```\ndocker run -ti -p 11111:11111  feelpp/develop\n```\n\n*Useful tip*: the feelpp/dev-env image packages the `tmux`and `screen` terminal multiplexers, so you can launch several virtual terminals inside the container.\n\nOnce you have launcher the container with the exported port, you can launch a pvserver inside the connect and setup your ParaView to use Catalyst and connect to the pvserver, by specifying the host and hostPort.\nYou can then launch sample Feel++ apps and use In-Situ visualization. For example:\n```\nmpirun -np 2 feelpp_qs_laplacian_2d --config-file src/feelpp/quickstart/laplacian/qs_laplacian_2d.cfg --exporter.format vtk --exporter.vtk.insitu.enable 1\n```\n\nIf you encounter problems regarding infiniband on supercomputers, you can add the following option to mpirun to use tcp: ` -mca btl tcp,self`\n\nFor more information about In-Situ visualization in Feel++, please refer to [https://github.com/feelpp/feelpp/wiki/In-Situ-Visualization](https://github.com/feelpp/feelpp/wiki/In-Situ-Visualization)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeelpp%2Fdocker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffeelpp%2Fdocker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffeelpp%2Fdocker/lists"}