Skip to content

Commit

Permalink
Fix #41 (#42)
Browse files Browse the repository at this point in the history
* Fix #41

* Requested changes
  • Loading branch information
sebwolf-de authored May 17, 2024
1 parent 2e9c268 commit f8b03b2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tpv13/tpv13.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
"source": [
"You can also visualize the SeisSol output in Paraview on your local machine. For that, you have to copy the files from your Docker container. \n",
"\n",
"Do you remember the name of your container? Type the following command in the terminal of your local machine and replace my_docker by the name of your container and my_output by the output file you want to copy: \n",
"The following commands allow you to copy the simulation output from docker to the native filesystem of your machine. Type the commands in the terminal of your local machine: \n",
"\n"
]
},
Expand All @@ -292,7 +292,11 @@
"metadata": {},
"outputs": [],
"source": [
"docker cp my_docker:/home/training/tpv13/my_output ."
"# Execute on your local machine, not within this notebook!",
"\n",
"export my_docker=$(docker ps --format \"{{.Names}}\")",
"\n",
"docker cp ${my_docker}:/home/training/tpv13/output ."
]
},
{
Expand Down

0 comments on commit f8b03b2

Please sign in to comment.