1
0
Fork 0

improve docker quickstart completeness

This commit is contained in:
Nick Sweeting 2020-08-09 23:12:28 -04:00 committed by GitHub
parent 6e4078b3a9
commit f9afb7869d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -64,7 +64,8 @@ To get started, you can [install them manually](https://github.com/pirate/Archiv
mkdir data && cd data
docker run -v $PWD:/data nikisweeting/archivebox init
docker run -v $PWD:/data nikisweeting/archivebox add 'https://example.com'
docker run -v $PWD:/data -p 8000 nikisweeting/archivebox server
docker run -v $PWD:/data -it nikisweeting/archivebox manage createsuperuser
docker run -v $PWD:/data -p 8000:8000 nikisweeting/archivebox server 0.0.0.0:8000
open https://127.0.0.1:8000
```