mirror of
https://github.com/acedanger/docker.git
synced 2025-12-05 22:50:17 -08:00
bookmarks
This commit is contained in:
37
hoarder/docker-compose.yml
Normal file
37
hoarder/docker-compose.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
services:
|
||||
hoarder:
|
||||
image: ghcr.io/hoarder-app/hoarder:${HOARDER_VERSION:-release}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- data:/data
|
||||
ports:
|
||||
- 3000:3000
|
||||
environment:
|
||||
MEILI_ADDR: http://meilisearch:7700
|
||||
BROWSER_WEB_URL: http://chrome:9222
|
||||
NEXTAUTH_SECRET: ${NEXTAUTH_SECRET}
|
||||
OPENAI_API_KEY: ${OPENAI_API_KEY}
|
||||
NEXTAUTH_URL: ${NEXTAUTH_URL}
|
||||
MEILI_MASTER_KEY: ${MEILI_MASTER_KEY}
|
||||
DATA_DIR: /data
|
||||
chrome:
|
||||
image: gcr.io/zenika-hub/alpine-chrome:123
|
||||
restart: unless-stopped
|
||||
command:
|
||||
- --no-sandbox
|
||||
- --disable-gpu
|
||||
- --disable-dev-shm-usage
|
||||
- --remote-debugging-address=0.0.0.0
|
||||
- --remote-debugging-port=9222
|
||||
- --hide-scrollbars
|
||||
meilisearch:
|
||||
image: getmeili/meilisearch:v1.11.1
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
MEILI_NO_ANALYTICS: true
|
||||
volumes:
|
||||
- meilisearch:/meili_data
|
||||
|
||||
volumes:
|
||||
meilisearch:
|
||||
data:
|
||||
Reference in New Issue
Block a user