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

Documentation update: quick start with docker (Fix issue #1589) #1620

Merged
merged 1 commit into from
Nov 14, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ If you just want to give thumbor a try, it is pretty easy to get
started. **It won't take more than a minute.**

Just install it with ``pip install thumbor`` and start the process with
``thumbor`` in a console. That's all you need to start transforming images.
``thumbor`` in a console. That's all you need to start transforming images.

The image we'll be using in most of our examples is a Creative Commons licensed image by `Snapwire <https://www.pexels.com/@snapwire>`_::

Expand Down Expand Up @@ -36,11 +36,11 @@ Problems installing thumbor locally

No worries! If you have a docker host accessible, just run::

$ docker run -p 8888:80 minimalcompact/thumbor
$ docker run -p 8888:80 ghcr.io/minimalcompact/thumbor:latest

After downloading the image and running it, thumbor will be accessible at ``http://localhost:8888/``.

For more information on minimalcompact/thumbor, visit their `github page <https://github.com/MinimalCompact/thumbor>`_.
For more details check the `MinimalCompact thumbor docker image <https://github.com/MinimalCompact/thumbor>`_.

Changing its size
-----------------
Expand Down
4 changes: 2 additions & 2 deletions docs/hosting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ Running with Docker

Running thumbor with docker is as easy as::

$ docker run -p 8888:80 minimalcompact/thumbor
$ docker run -p 8888:80 ghcr.io/minimalcompact/thumbor:latest
...
$ curl http://localhost:8888/healthcheck
WORKING%
WORKING%

For more details check the `MinimalCompact thumbor docker image <https://github.com/MinimalCompact/thumbor>`_.

Expand Down