readme tweaks
This commit is contained in:
parent
1e8ed66a9e
commit
63caff2811
1 changed files with 7 additions and 6 deletions
13
README.md
13
README.md
|
@ -42,11 +42,12 @@ The main index is a self-contained `data/index.sqlite3` file, and each snapshot
|
||||||
<summary><b>Get ArchiveBox with Docker Compose</b></summary>
|
<summary><b>Get ArchiveBox with Docker Compose</b></summary>
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Download the compose file into an empty directory somewhere
|
# create a new empty directory and initalize your collection (can be anywhere)
|
||||||
mkdir ~/archivebox && cd ~/archivebox
|
mkdir ~/archivebox && cd ~/archivebox
|
||||||
wget https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/master/docker-compose.yml
|
curl -O https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/master/docker-compose.yml
|
||||||
|
|
||||||
docker-compose run archivebox init
|
docker-compose run archivebox init
|
||||||
|
|
||||||
|
# start the webserver and open the UI (optional)
|
||||||
docker-compose up -d
|
docker-compose up -d
|
||||||
open http://127.0.0.1:8000
|
open http://127.0.0.1:8000
|
||||||
|
|
||||||
|
@ -60,11 +61,11 @@ docker-compose run archivebox manage createsuperuser
|
||||||
<summary><b>Get ArchiveBox with plain Docker</b></summary>
|
<summary><b>Get ArchiveBox with plain Docker</b></summary>
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# cd into a new empty directory somewhere and pull the latest image
|
# create a new empty directory and initalize your collection (can be anywhere)
|
||||||
mkdir ~/archivebox && cd ~/archivebox
|
mkdir ~/archivebox && cd ~/archivebox
|
||||||
docker pull archivebox/archivebox
|
|
||||||
|
|
||||||
docker run -v $PWD:/data -it archivebox/archivebox init
|
docker run -v $PWD:/data -it archivebox/archivebox init
|
||||||
|
|
||||||
|
# start the webserver and open the UI (optional)
|
||||||
docker run -v $PWD:/data -it -p 8000:8000 archivebox/archivebox
|
docker run -v $PWD:/data -it -p 8000:8000 archivebox/archivebox
|
||||||
open http://127.0.0.1:8000
|
open http://127.0.0.1:8000
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue