Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tag patterns #94

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: minimal

on:
schedule:
- cron: '0 01 * * 4' # every thusday at 1 am
- cron: '0 01 * * 4' # every thursday at 1 am
push:
branches:
- 'master'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rocker-rpyjl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: rocker-rpyjl

on:
schedule:
- cron: '0 01 * * 7' # every Sunday at 1am
- cron: '0 01 * * 4' # every thursday at 1 am
push:
branches:
- 'master'
Expand Down
5 changes: 4 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ See [github.com/rocker-org](https://github.com/rocker-org/rocker/wiki/Using-the-
You can also pull and run the same images from ghcr.io, e.g. as follow:

```bash
docker run -d -p 8786:8787 -v $(pwd):/home/rstudio/data -e PASSWORD=pw ghcr.io/ghcr.io/geocompx/docker:minimal
# For latest version:
docker run -d -p 8786:8787 -v $(pwd):/home/rstudio/data -e PASSWORD=pw ghcr.io/ghcr.io/geocompx/minimal
# For a specific version/date (see https://github.com/geocompx/docker/pkgs/container/minimal):
docker run -d -p 8786:8787 -v $(pwd):/home/rstudio/data -e PASSWORD=pw ghcr.io/ghcr.io/geocompx/minimal:date_2024-10-14
```

From this point to *build* the book you can open projects in the `geocompr` directory from the project box in the top-right hand corner, and knit `index.Rmd` with the little `knit` button above the the RStudio script panel (`Ctl+Shift+B` should do the same job).
Expand Down
1 change: 0 additions & 1 deletion rocker-rpyjl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
FROM ghcr.io/geocompx/docker:rocker-rpy
RUN /rocker_scripts/install_julia.sh
# Install JulliaCall:
RUN R -e "install.packages('JuliaCall')"