Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LDD-for-two-phase-flow-systems
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Seus
LDD-for-two-phase-flow-systems
Commits
caf0fe0f
Commit
caf0fe0f
authored
Oct 10, 2018
by
David Seus
Browse files
Options
Downloads
Patches
Plain Diff
fix README
parent
ea846967
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+15
-8
15 additions, 8 deletions
README.md
with
15 additions
and
8 deletions
README.md
+
15
−
8
View file @
caf0fe0f
# Numerical experiments for LDD-TPR
# Numerical experiments for LDD-TPR
## Manual on using latest fenix image in Docker
## Manual how to set up latest fenix image in Docker
Pull the latest fenics Docker image
Pull the latest fenics Docker image
```
```
docker pull quay.io/fenicsproject/stable:latest;
docker pull quay.io/fenicsproject/stable:latest;
## Create docker container named LDD-TPR with graphical display, share folder `pwd`:
## Create docker container named LDD-TPR with graphical display, share folder `pwd`:
docker run --dns=129.69.252.252 -it --env HOST_UID=$(id -u $USER) --env HOST_GID=$(id -g $USER) --env DISPLAY=unix$DISPLAY --device /dev/dri --volume /tmp/.X11-unix:/tmp/.X11-unix:rw --volume $(pwd):/home/fenics/shared --name LDD-TPR quay.io/fenicsproject/stable:latest /bin/bash
docker run --dns=129.69.252.252 -it --env HOST_UID=$(id -u $USER) --env HOST_GID=$(id -g $USER) --env DISPLAY=unix$DISPLAY --device /dev/dri --volume /tmp/.X11-unix:/tmp/.X11-unix:rw --volume $(pwd):/home/fenics/shared --name LDD-TPR quay.io/fenicsproject/stable:latest /bin/bash
If you want the container do be automatically deleted after exiting add `--rm` option.
If you want the container do be automatically deleted after exiting add `--rm` option.
...
@@ -27,18 +30,22 @@ List all docker container
...
@@ -27,18 +30,22 @@ List all docker container
docker ps -a
docker ps -a
Remove container
Remove container
docker rm $container
docker rm $container
Remove all stopped container
Remove all stopped container
docker container prune
docker container prune
List all images
List all images
docker images
docker images
Remove image
Remove image
docker rmi $image
docker rmi $image
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment