chore(docs): update reference to incorrect readur container location
This commit is contained in:
parent
5b6319e522
commit
ab4921b3d5
|
|
@ -60,7 +60,7 @@ version: '3.8'
|
|||
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
environment:
|
||||
SERVER_PORT: 3000
|
||||
DATABASE_URL: postgresql://readur:readur@postgres/readur
|
||||
|
|
@ -150,7 +150,7 @@ version: '3.8'
|
|||
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
environment:
|
||||
SERVER_PORT: 3000
|
||||
labels:
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ Perfect for scenarios where you want to automatically process files from:
|
|||
```yaml
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
volumes:
|
||||
# Mount your folder to the watch directory
|
||||
- /path/to/your/documents:/app/watch
|
||||
|
|
@ -97,7 +97,7 @@ docker run -d \
|
|||
```yaml
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
volumes:
|
||||
- /mnt/nfs/documents:/app/watch
|
||||
- readur_uploads:/app/uploads
|
||||
|
|
|
|||
|
|
@ -615,7 +615,7 @@ Since Readur is a single-instance application, scaling is achieved through:
|
|||
version: '3.8'
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
# Single instance only - do NOT use replicas
|
||||
deploy:
|
||||
replicas: 1 # MUST be 1
|
||||
|
|
@ -723,7 +723,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: readur
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
resources:
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ For production deployments, create a custom `docker-compose.prod.yml`:
|
|||
```yaml
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
ports:
|
||||
- "8000:8000"
|
||||
environment:
|
||||
|
|
@ -328,7 +328,7 @@ scrape_configs:
|
|||
version: '3.8'
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
deploy:
|
||||
replicas: 1 # MUST be 1 - Readur doesn't support multiple instances
|
||||
restart_policy:
|
||||
|
|
@ -366,7 +366,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: readur
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
env:
|
||||
- name: JWT_SECRET
|
||||
valueFrom:
|
||||
|
|
|
|||
|
|
@ -240,12 +240,12 @@ sequenceDiagram
|
|||
```yaml
|
||||
# Multiple backend instances
|
||||
backend-1:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
environment:
|
||||
- INSTANCE_ID=1
|
||||
|
||||
backend-2:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
environment:
|
||||
- INSTANCE_ID=2
|
||||
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@ Create `docker-compose.prod.yml`:
|
|||
```yaml
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
ports:
|
||||
- "8000:8000"
|
||||
environment:
|
||||
|
|
|
|||
|
|
@ -533,7 +533,7 @@ services:
|
|||
- ./certs:/certs
|
||||
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.readur.rule=Host(`readur.example.com`)"
|
||||
|
|
|
|||
|
|
@ -327,7 +327,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: readur
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: readur-config
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ ALLOW_LOCAL_AUTH=true # Keep local auth for development
|
|||
version: '3.8'
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
environment:
|
||||
# Core settings
|
||||
DATABASE_URL: postgresql://readur:readur@postgres:5432/readur
|
||||
|
|
@ -326,7 +326,7 @@ services:
|
|||
- redis
|
||||
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
environment:
|
||||
DATABASE_URL: postgresql://readur:readur@postgres:5432/readur
|
||||
|
||||
|
|
|
|||
|
|
@ -503,7 +503,7 @@ version: '3.8'
|
|||
|
||||
services:
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
environment:
|
||||
- ENABLE_PER_USER_WATCH=true
|
||||
- USER_WATCH_BASE_DIR=/app/user_watch
|
||||
|
|
@ -539,7 +539,7 @@ spec:
|
|||
spec:
|
||||
containers:
|
||||
- name: readur
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: readur-config
|
||||
|
|
|
|||
|
|
@ -333,7 +333,7 @@ services:
|
|||
- readur
|
||||
|
||||
readur:
|
||||
image: readur:latest
|
||||
image: ghcr.io/readur/readur:main
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.readur.rule=Host(`readur.company.com`)"
|
||||
|
|
|
|||
Loading…
Reference in New Issue