Skip to content

Commit

Permalink
update version referenced in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
stonesong committed Jan 24, 2020
1 parent 735089b commit 5f198d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ Quick start
-----------
SnapDump is available as docker application for easy deployment. Let's pull a stable version of the SnapDump server (check DockerHub to be up to date):

$ docker pull zweidenker/snap-dump:0.5.1.1
$ docker pull zweidenker/snap-dump:0.7

To keep the snapshots on server restart we need to create a volume where snapshots can be stored. You do this by invoking:

$ docker volume create SnapDump

SnapDump uses internally the port 5555 for the server. This can be mapped to a local port on the host by specifying on the docker commandline. To start the server with that port and the former created volume invoke:

$ docker run -p 8888:5555 -v SnapDump:/snapshots zweidenker/snap-dump:0.5.1.1
$ docker run -p 8888:5555 -v SnapDump:/snapshots zweidenker/snap-dump:0.7

Now our SnapDump server is up and running, we would like to first: report exceptions from a SnapDump handler image , and second: retrieve our reported exceptions on a SnapDump client image.

Expand All @@ -37,7 +37,7 @@ To download a pharo image from command line you can use:
To install SnapDump open a playground and execute:

Metacello new
repository: 'github://zweidenker/SnapDump:0.5.1.1';
repository: 'github://zweidenker/SnapDump:0.7';
baseline: #SnapDump;
load

Expand All @@ -47,7 +47,7 @@ To configure Snapdump on the handler image execute:

SnapDump hackUIManager; beHandler.
SnapDump uri: 'http://localhost:8888/api'.
SnapDump current projectName: 'projectname1' versionString: '1.0'.
SnapDump current projectName: 'projectname1' versionString: '0.7'.

This could be executed systematically when the image is deployed and starts.

Expand Down

0 comments on commit 5f198d6

Please sign in to comment.