fix(hoarder): add http protocol to addrs

This should make hoarder work as advertised now, without failure to
connect to the browser or meilisearch.

Tacked on a corrected image link as well.
This commit is contained in:
redbeardymcgee 2024-12-17 10:01:29 -06:00
parent fb3d880182
commit ffabf88216
3 changed files with 4 additions and 3 deletions

View file

@ -9,7 +9,7 @@ TimeoutStartSec=900
WantedBy=default.target WantedBy=default.target
[Container] [Container]
Image=ghcr.io/zenika-hub/alpine-chrome:123 Image=docker.io/zenika/alpine-chrome
ContainerName=hoarder-chrome ContainerName=hoarder-chrome
HostName=hoarder-chrome HostName=hoarder-chrome

View file

@ -1,8 +1,9 @@
# https://docs.hoarder.app/configuration/ # https://docs.hoarder.app/configuration/
DATA_DIR=/data DATA_DIR=/data
# Change according to your domain
NEXTAUTH_URL=http://localhost:3000 NEXTAUTH_URL=http://localhost:3000
#NEXTAUTH_SECRET= #NEXTAUTH_SECRET=
MEILI_ADDR=meilisearch:7700 MEILI_ADDR=http://meilisearch:7700
#MEILI_MASTER_KEY= #MEILI_MASTER_KEY=
MEILI_NO_ANALYTICS=true MEILI_NO_ANALYTICS=true
#MAX_ASSET_SIZE_MB= #MAX_ASSET_SIZE_MB=
@ -31,7 +32,7 @@ MEILI_NO_ANALYTICS=true
# Crawler # Crawler
#CRAWLER_NUM_WORKERS= #CRAWLER_NUM_WORKERS=
BROWSER_WEB_URL=hoarder-chrome:9222 BROWSER_WEB_URL=http://hoarder-chrome:9222
#BROWSER_WEBSOCKET_URL= #BROWSER_WEBSOCKET_URL=
#BROWSER_CONNECT_ONDEMAND= #BROWSER_CONNECT_ONDEMAND=
#CRAWLER_DOWNLOAD_BANNER_IMAGE= #CRAWLER_DOWNLOAD_BANNER_IMAGE=