File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ It's recommended to use either `:main` (stable, all architectures) or `:dev` (be
53
53
mkdir ~ /archivebox && cd ~ /archivebox # data folder can be anywhere
54
54
docker pull archivebox/archivebox
55
55
docker run -v $PWD :/data -it archivebox/archivebox init --setup
56
+ docker run -v $PWD :/data -it -p 8000:8000 archivebox/archivebox server --quick-init 0.0.0.0:8000
56
57
```
57
58
58
59
#### Usage
@@ -72,8 +73,17 @@ open http://127.0.0.1:8000
72
73
73
74
## Docker Compose
74
75
76
+ ``` bash
77
+ curl -fsSL ' https://github.com/ArchiveBox/ArchiveBox/raw/dev/docker-compose.yml' > docker-compose.yml
78
+ ```
79
+
75
80
** ` docker-compose.yml ` :**
76
81
``` yaml
82
+
83
+ # SIMPLE EXAMPLE
84
+ # see more complete setup here:
85
+ # https://github.com/ArchiveBox/ArchiveBox/blob/dev/docker-compose.yml
86
+
77
87
version : ' 3.9'
78
88
79
89
services :
@@ -90,8 +100,6 @@ services:
90
100
- ./data:/data
91
101
` ` `
92
102
93
- See a full setup here: https://github.com/ArchiveBox/ArchiveBox/blob/dev/docker-compose.yml
94
-
95
103
#### Usage
96
104
97
105
` ` ` bash
You can’t perform that action at this time.
0 commit comments