1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

Add missing org/image to docker run commands (#733)

This commit is contained in:
Victor "Vito" Gama 2022-08-09 17:53:02 -03:00 committed by GitHub
parent 7b00d0627e
commit 7432299079
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -218,13 +218,13 @@ The following will run pywb in Docker directly on port 80:
.. code:: console
docker run -p 80:8080 -v /webarchive-data/:/webarchive
docker run -p 80:8080 -v /webarchive-data/:/webarchive webrecorder/pywb
To run pywb in Docker behind a local nginx (as shown below), port 8081 should also be mapped:
.. code:: console
docker run -p 8081:8081 -v /webarchive-data/:/webarchive
docker run -p 8081:8081 -v /webarchive-data/:/webarchive webrecorder/pywb
See :ref:`getting-started-docker` for more info on using pywb with Docker.