Skip to content

Documentation update for pull 177 #182

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

Merged
merged 1 commit into from
Nov 13, 2024
Merged
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 web/docs/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ For many platforms a product called `Docker Desktop` is available, which include

Some notes:

* On Windows we recommend using the [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl) (WSL) as it also provides a powerful (Bash) command line and has optimal integration with Docker
* On Windows we recommend using the [Windows Subsystem for Linux v2](https://docs.microsoft.com/en-us/windows/wsl) (WSL2) as it also provides a powerful (Bash) command line and has optimal integration with Docker
* On Mac, if you are using [Homebrew](https://brew.sh), consider (as the author has) using the [brew Docker formula](https://formulae.brew.sh/formula/Docker)
* On Linux, you can choose the relevant installer for your platform. You can also use Virtualbox with a Ubuntu Image or use a cloud VM
* Docker desktop includes a graphical user interface with some interesting options. You can see logs and information about running containers, open their service in a browser or even open a terminal inside the container
Expand Down
26 changes: 26 additions & 0 deletions web/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,14 @@ Below we will download and run the workshop content.
curl -O https://codeload.github.com/geopython/geopython-workshop/zip/master
unzip master
cd geopython-workshop-master/workshop
```
</div>

Linux, macOS:

<div class="termy">

```console
// start the workshop

./geopython-workshop-ctl.sh start
Expand All @@ -92,6 +99,25 @@ cd geopython-workshop-master/workshop

./geopython-workshop-ctl.sh stop
```
</div>

Windows (Powershell or Command Prompt):

<div class="termy">

```console
// start the workshop

.\win-geopython-workshop-ctl.bat start

// display URL and open in default web browser

.\win-geopython-workshop-ctl.bat url

// stop workshop

.\win-geopython-workshop-ctl.bat stop
```

</div>

Expand Down
Loading