[GH-ISSUE #175] ghcr.io/hoarder-app/hoarder-web dont work #135

Closed
opened 2026-03-02 11:46:59 +03:00 by kerem · 9 comments
Owner

Originally created by @Famku on GitHub (May 24, 2024).
Original GitHub issue: https://github.com/karakeep-app/karakeep/issues/175

Hi,

ghcr.io/hoarder-app/hoarder-web dont work for me

KeyError: 'ContainerConfig'

the old one works fine.

Originally created by @Famku on GitHub (May 24, 2024). Original GitHub issue: https://github.com/karakeep-app/karakeep/issues/175 Hi, ghcr.io/hoarder-app/hoarder-web dont work for me KeyError: 'ContainerConfig' the old one works fine.
kerem closed this issue 2026-03-02 11:46:59 +03:00
Author
Owner

@MohamedBassem commented on GitHub (May 24, 2024):

Can you share the exact command you're running? Is that in docker compose? Did you try manually running "docker pull"?

<!-- gh-comment-id:2129000456 --> @MohamedBassem commented on GitHub (May 24, 2024): Can you share the exact command you're running? Is that in docker compose? Did you try manually running "docker pull"?
Author
Owner

@Famku commented on GitHub (May 24, 2024):

docker-compose

docker-compose pull && sudo docker-compose up -d

<!-- gh-comment-id:2129004297 --> @Famku commented on GitHub (May 24, 2024): docker-compose docker-compose pull && sudo docker-compose up -d
Author
Owner

@MohamedBassem commented on GitHub (May 24, 2024):

Can you run 'docker pull ghcr.io/hoarder-app/hoarder-web:release' and share the output?

Can you also share the value of "HOARDER_VERSION" env variable?

<!-- gh-comment-id:2129007952 --> @MohamedBassem commented on GitHub (May 24, 2024): Can you run 'docker pull ghcr.io/hoarder-app/hoarder-web:release' and share the output? Can you also share the value of "HOARDER_VERSION" env variable?
Author
Owner

@Famku commented on GitHub (May 24, 2024):

release: Pulling from hoarder-app/hoarder-web
Digest: sha256:b42c3362b0ba4d48c696807814df8524ea2525cd399c1482844d5afbc4e3361f
Status: Downloaded newer image for ghcr.io/hoarder-app/hoarder-web:release
ghcr.io/hoarder-app/hoarder-web:release

HOARDER_VERSION=release

<!-- gh-comment-id:2129012765 --> @Famku commented on GitHub (May 24, 2024): release: Pulling from hoarder-app/hoarder-web Digest: sha256:b42c3362b0ba4d48c696807814df8524ea2525cd399c1482844d5afbc4e3361f Status: Downloaded newer image for ghcr.io/hoarder-app/hoarder-web:release ghcr.io/hoarder-app/hoarder-web:release HOARDER_VERSION=release
Author
Owner

@MohamedBassem commented on GitHub (May 24, 2024):

Ok, so pulling it works makes me wonder if it's a typo or something in the compose file. Can you share the lines in the compose file where you specify those images?

<!-- gh-comment-id:2129050323 --> @MohamedBassem commented on GitHub (May 24, 2024): Ok, so pulling it works makes me wonder if it's a typo or something in the compose file. Can you share the lines in the compose file where you specify those images?
Author
Owner

@Famku commented on GitHub (May 24, 2024):

`version: "3.8"
services:
web:
image: ghcr.io/mohamedbassem/hoarder-web:${HOARDER_VERSION:-release}
restart: unless-stopped
volumes:
- data:/data
ports:
- 3000:3000
env_file:
- .env
environment:
REDIS_HOST: redis
MEILI_ADDR: http://meilisearch:7700
DATA_DIR: /data
redis:
image: redis:7.2-alpine
restart: unless-stopped
volumes:
- redis:/data
chrome:
image: gcr.io/zenika-hub/alpine-chrome:123
restart: unless-stopped
command:
- --no-sandbox
- --disable-gpu
- --remote-debugging-address=0.0.0.0
- --remote-debugging-port=9222
- --hide-scrollbars
- --disable-dev-shm-usage
meilisearch:
image: getmeili/meilisearch:v1.6
restart: unless-stopped
env_file:
- .env
volumes:
- meilisearch:/meili_data
workers:
image: ghcr.io/hoarder-app/hoarder-workers:${HOARDER_VERSION:-release}
restart: unless-stopped
volumes:
- data:/data
env_file:
- .env
environment:
REDIS_HOST: redis
MEILI_ADDR: http://meilisearch:7700
BROWSER_WEB_URL: http://chrome:9222
DATA_DIR: /data
# OPENAI_API_KEY: ...
depends_on:
web:
condition: service_started

volumes:
redis:
meilisearch:
data:`

<!-- gh-comment-id:2129053166 --> @Famku commented on GitHub (May 24, 2024): `version: "3.8" services: web: image: ghcr.io/mohamedbassem/hoarder-web:${HOARDER_VERSION:-release} restart: unless-stopped volumes: - data:/data ports: - 3000:3000 env_file: - .env environment: REDIS_HOST: redis MEILI_ADDR: http://meilisearch:7700 DATA_DIR: /data redis: image: redis:7.2-alpine restart: unless-stopped volumes: - redis:/data chrome: image: gcr.io/zenika-hub/alpine-chrome:123 restart: unless-stopped command: - --no-sandbox - --disable-gpu - --remote-debugging-address=0.0.0.0 - --remote-debugging-port=9222 - --hide-scrollbars - --disable-dev-shm-usage meilisearch: image: getmeili/meilisearch:v1.6 restart: unless-stopped env_file: - .env volumes: - meilisearch:/meili_data workers: image: ghcr.io/hoarder-app/hoarder-workers:${HOARDER_VERSION:-release} restart: unless-stopped volumes: - data:/data env_file: - .env environment: REDIS_HOST: redis MEILI_ADDR: http://meilisearch:7700 BROWSER_WEB_URL: http://chrome:9222 DATA_DIR: /data # OPENAI_API_KEY: ... depends_on: web: condition: service_started volumes: redis: meilisearch: data:`
Author
Owner

@MohamedBassem commented on GitHub (May 26, 2024):

hmmm, the docker compose looks good to me. Did you manage to get this solved? I've been personally using the hoarder-app images and they seem to be working just fine.

<!-- gh-comment-id:2132162407 --> @MohamedBassem commented on GitHub (May 26, 2024): hmmm, the docker compose looks good to me. Did you manage to get this solved? I've been personally using the `hoarder-app` images and they seem to be working just fine.
Author
Owner

@Famku commented on GitHub (May 26, 2024):

I stay with the old repo for now.

And if nobody complain, maybe it is just on my side

I just wanted to inform you

<!-- gh-comment-id:2132164534 --> @Famku commented on GitHub (May 26, 2024): I stay with the old repo for now. And if nobody complain, maybe it is just on my side I just wanted to inform you
Author
Owner

@kamtschatka commented on GitHub (Sep 21, 2024):

closing this issue as it is very old and nobody else complained. If you still encounter issues, let us know

<!-- gh-comment-id:2365276208 --> @kamtschatka commented on GitHub (Sep 21, 2024): closing this issue as it is very old and nobody else complained. If you still encounter issues, let us know
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/karakeep#135
No description provided.