diff --git a/docs/REVERSE_PROXY.md b/docs/REVERSE_PROXY.md index 0871889..d7198a6 100644 --- a/docs/REVERSE_PROXY.md +++ b/docs/REVERSE_PROXY.md @@ -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: diff --git a/docs/WATCH_FOLDER.md b/docs/WATCH_FOLDER.md index f297536..3a1c1af 100644 --- a/docs/WATCH_FOLDER.md +++ b/docs/WATCH_FOLDER.md @@ -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 diff --git a/docs/architecture.md b/docs/architecture.md index cf46643..8949c6d 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -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: diff --git a/docs/deployment.md b/docs/deployment.md index 7c382b2..a11940e 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -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: diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md index ea6a280..a4c51f6 100644 --- a/docs/dev/architecture.md +++ b/docs/dev/architecture.md @@ -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 diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 095c64e..713d59c 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -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: diff --git a/docs/integrations.md b/docs/integrations.md index dbc7e78..f281a5f 100644 --- a/docs/integrations.md +++ b/docs/integrations.md @@ -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`)" diff --git a/docs/migration-guide.md b/docs/migration-guide.md index 8f9d785..5d0ab1e 100644 --- a/docs/migration-guide.md +++ b/docs/migration-guide.md @@ -327,7 +327,7 @@ spec: spec: containers: - name: readur - image: readur:latest + image: ghcr.io/readur/readur:main envFrom: - configMapRef: name: readur-config diff --git a/docs/oidc-setup.md b/docs/oidc-setup.md index 4d8b5d3..840bf5a 100644 --- a/docs/oidc-setup.md +++ b/docs/oidc-setup.md @@ -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 diff --git a/docs/per-user-watch-directories.md b/docs/per-user-watch-directories.md index 8e47945..4fc9572 100644 --- a/docs/per-user-watch-directories.md +++ b/docs/per-user-watch-directories.md @@ -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 diff --git a/docs/self-hosting/reverse-proxy.md b/docs/self-hosting/reverse-proxy.md index a02df2b..0684633 100644 --- a/docs/self-hosting/reverse-proxy.md +++ b/docs/self-hosting/reverse-proxy.md @@ -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`)"