mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
point to master image, not latest
Following the docker-compose quick-start guide, used "latest" tagged docker image in compose file. Returned an exec error on my arm64 raspi 3b+. Seems like this needs to be "master" tag to really support multi-arch... Worked when I changed it to "master" on my machine.
This commit is contained in:
parent
687c34af3e
commit
bac5a10eae
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ version: '2.4'
|
|||
services:
|
||||
archivebox:
|
||||
# build: . # for developers working on archivebox
|
||||
image: ${DOCKER_IMAGE:-archivebox/archivebox:latest}
|
||||
image: ${DOCKER_IMAGE:-archivebox/archivebox:master}
|
||||
command: server --quick-init 0.0.0.0:8000
|
||||
ports:
|
||||
- 8000:8000
|
||||
|
|
Loading…
Reference in a new issue