Skip to content

Commit

Permalink
Change from v0.8.0 to release tag docker image.
Browse files Browse the repository at this point in the history
  • Loading branch information
cianwilson committed Jul 7, 2024
1 parent 74ac4fa commit fb0c4bf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/book_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
jobs:
build-book:
runs-on: ubuntu-latest
container: ghcr.io/cianwilson/fenicsx_subduction:v0.8.0
container: ghcr.io/cianwilson/fenicsx_subduction:release

env:
PYVISTA_TRAME_SERVER_PROXY_PREFIX: "/proxy/"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
jobs:
test:
runs-on: ubuntu-latest
container: ghcr.io/cianwilson/fenicsx_subduction:v0.8.0
container: ghcr.io/cianwilson/fenicsx_subduction:release
env:
PYVISTA_OFF_SCREEN: true

Expand Down
2 changes: 1 addition & 1 deletion binder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/cianwilson/fenicsx_subduction:v0.8.0
FROM ghcr.io/cianwilson/fenicsx_subduction:release

# create user with a home directory
ARG NB_USER=jovyan
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ cd fenicsx_subduction
Then run the following docker command:

```bash
docker run --init --rm -p 8888:8888 --workdir /root/shared -v "$(pwd)":/root/shared ghcr.io/cianwilson/fenicsx_subduction:v0.8.0
docker run --init --rm -p 8888:8888 --workdir /root/shared -v "$(pwd)":/root/shared ghcr.io/cianwilson/fenicsx_subduction:release
```
Finally, copy and paste the URL printed in the terminal into a web-browser.

Alternatively, this image can used as an interactive terminal by running:

```bash
docker run -it --rm -p 8888:8888 --workdir /root/shared -v "$(pwd)":/root/shared --entrypoint="/bin/bash" ghcr.io/cianwilson/fenicsx_subduction:v0.8.0
docker run -it --rm -p 8888:8888 --workdir /root/shared -v "$(pwd)":/root/shared --entrypoint="/bin/bash" ghcr.io/cianwilson/fenicsx_subduction:release
```
Jupyter lab can then be started from within the docker container:
```bash
Expand Down

0 comments on commit fb0c4bf

Please sign in to comment.