Skip to content

Commit

Permalink
docs: fix docker run instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrobenolt committed Oct 5, 2016
1 parent d946f66 commit 80786ee
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions docs/installation/docker/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -142,13 +142,12 @@ Starting the Web Service
~~~~~~~~~~~~~~~~~~~~~~~~

The web interface needs to expose port 9000 into the container. This
can just be done with `--port 9000:9000`::
can just be done with `--publish 9000:9000`::

docker run \
--detach \
--rm \
--name sentry-web-01 \
--port 9000:9000 \
--publish 9000:9000 \
sentry-onpremise \
run web

Expand All @@ -163,7 +162,6 @@ A large amount of Sentry's work is managed via background workers::

docker run \
--detach \
--rm \
--name sentry-worker-01 \
sentry-onpremise
run worker
Expand All @@ -177,7 +175,6 @@ Sentry also needs a cron process::

docker run \
--detch \
--rm \
--name sentry-cron \
sentry-onpremise
run cron
Expand Down

0 comments on commit 80786ee

Please sign in to comment.