mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
remove references to main branch in favor of stable branch
This commit is contained in:
parent
8e9cfc8869
commit
463ea54616
3 changed files with 17 additions and 17 deletions
|
@ -27,9 +27,9 @@ if (which docker-compose > /dev/null && docker pull archivebox/archivebox:latest
|
||||||
if [ -f "./index.sqlite3" ]; then
|
if [ -f "./index.sqlite3" ]; then
|
||||||
mv -i ~/archivebox/* ~/archivebox/data/
|
mv -i ~/archivebox/* ~/archivebox/data/
|
||||||
fi
|
fi
|
||||||
curl -fsSL 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/main/docker-compose.yml' > docker-compose.yml
|
curl -fsSL 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/stable/docker-compose.yml' > docker-compose.yml
|
||||||
mkdir -p ./etc
|
mkdir -p ./etc
|
||||||
curl -fsSL 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/main/etc/sonic.cfg' > ./etc/sonic.cfg
|
curl -fsSL 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/stable/etc/sonic.cfg' > ./etc/sonic.cfg
|
||||||
docker compose run --rm archivebox init --setup
|
docker compose run --rm archivebox init --setup
|
||||||
echo
|
echo
|
||||||
echo "[+] Starting ArchiveBox server using: docker compose up -d..."
|
echo "[+] Starting ArchiveBox server using: docker compose up -d..."
|
||||||
|
|
|
@ -48,17 +48,17 @@ services:
|
||||||
# $ docker compose restart archivebox_scheduler
|
# $ docker compose restart archivebox_scheduler
|
||||||
|
|
||||||
archivebox_scheduler:
|
archivebox_scheduler:
|
||||||
image: archivebox/archivebox:latest
|
image: archivebox/archivebox:latest
|
||||||
command: schedule --foreground --update --every=day
|
command: schedule --foreground --update --every=day
|
||||||
environment:
|
environment:
|
||||||
- TIMEOUT=120 # use a higher timeout than the main container to give slow tasks more time when retrying
|
- TIMEOUT=120 # use a higher timeout than the main container to give slow tasks more time when retrying
|
||||||
# - PUID=502 # set to your host user's UID & GID if you encounter permissions issues
|
# - PUID=502 # set to your host user's UID & GID if you encounter permissions issues
|
||||||
# - PGID=20
|
# - PGID=20
|
||||||
volumes:
|
volumes:
|
||||||
- ./data:/data
|
- ./data:/data
|
||||||
# cpus: 2 # uncomment / edit these values to limit scheduler container resource consumption
|
# cpus: 2 # uncomment / edit these values to limit scheduler container resource consumption
|
||||||
# mem_limit: 2048m
|
# mem_limit: 2048m
|
||||||
# restart: always
|
# restart: always
|
||||||
|
|
||||||
|
|
||||||
### This runs the optional Sonic full-text search backend (much faster than default rg backend).
|
### This runs the optional Sonic full-text search backend (much faster than default rg backend).
|
||||||
|
@ -72,7 +72,7 @@ services:
|
||||||
# not needed after first run / if you have already have ./etc/sonic.cfg present
|
# not needed after first run / if you have already have ./etc/sonic.cfg present
|
||||||
dockerfile_inline: |
|
dockerfile_inline: |
|
||||||
FROM quay.io/curl/curl:latest AS config_downloader
|
FROM quay.io/curl/curl:latest AS config_downloader
|
||||||
RUN curl -fsSL 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/main/etc/sonic.cfg' > /tmp/sonic.cfg
|
RUN curl -fsSL 'https://raw.githubusercontent.com/ArchiveBox/ArchiveBox/stable/etc/sonic.cfg' > /tmp/sonic.cfg
|
||||||
FROM valeriansaliou/sonic:latest
|
FROM valeriansaliou/sonic:latest
|
||||||
COPY --from=config_downloader /tmp/sonic.cfg /etc/sonic.cfg
|
COPY --from=config_downloader /tmp/sonic.cfg /etc/sonic.cfg
|
||||||
expose:
|
expose:
|
||||||
|
@ -99,7 +99,7 @@ services:
|
||||||
# restricted to access from localhost by default because it has no authentication
|
# restricted to access from localhost by default because it has no authentication
|
||||||
- 127.0.0.1:8080:8080
|
- 127.0.0.1:8080:8080
|
||||||
|
|
||||||
|
|
||||||
### Example: Put Nginx in front of the ArchiveBox server for SSL termination and static file serving.
|
### Example: Put Nginx in front of the ArchiveBox server for SSL termination and static file serving.
|
||||||
# You can also any other ingress provider for SSL like Apache, Caddy, Traefik, Cloudflare Tunnels, etc.
|
# You can also any other ingress provider for SSL like Apache, Caddy, Traefik, Cloudflare Tunnels, etc.
|
||||||
|
|
||||||
|
@ -173,7 +173,7 @@ services:
|
||||||
|
|
||||||
### Example: run all your ArchiveBox traffic through a WireGuard VPN tunnel to avoid IP blocks.
|
### Example: run all your ArchiveBox traffic through a WireGuard VPN tunnel to avoid IP blocks.
|
||||||
# You can also use any other VPN that works at the docker IP level, e.g. Tailscale, OpenVPN, etc.
|
# You can also use any other VPN that works at the docker IP level, e.g. Tailscale, OpenVPN, etc.
|
||||||
|
|
||||||
# wireguard:
|
# wireguard:
|
||||||
# image: linuxserver/wireguard:latest
|
# image: linuxserver/wireguard:latest
|
||||||
# network_mode: 'service:archivebox'
|
# network_mode: 'service:archivebox'
|
||||||
|
|
2
docs
2
docs
|
@ -1 +1 @@
|
||||||
Subproject commit a1b69c51ba9b249c0b2a6efd141dbb792fc36ad2
|
Subproject commit f23abba9773b67ad9f2fd04d6f2e8e056dfa6521
|
Loading…
Reference in a new issue