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