Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Paperless-ngx image (linuxserver) is deprecated #3

Closed
null-except opened this issue Feb 25, 2023 · 2 comments
Closed

Paperless-ngx image (linuxserver) is deprecated #3

null-except opened this issue Feb 25, 2023 · 2 comments

Comments

@null-except
Copy link

Describe the bug
linuxserver stopped maintaining this image.

Expected behavior
We might change for the official image : https://github.com/paperless-ngx/paperless-ngx

@null-except
Copy link
Author

null-except commented Feb 26, 2023

Something like this might be useful I guess :

version: "3.4"
services:
  broker:
    image: docker.io/library/redis:7
    restart: unless-stopped
    volumes:
      - /DIR/redisdata:/data

  db:
    image: docker.io/library/postgres:13
    restart: unless-stopped
    volumes:
      - /DIR/pgdata:/var/lib/postgresql/data
    environment:
      POSTGRES_DB: paperless
      POSTGRES_USER: paperless
      POSTGRES_PASSWORD: paperless

  webserver:
    image: ghcr.io/paperless-ngx/paperless-ngx:latest
    restart: unless-stopped
    depends_on:
      - db
      - broker
    ports:
      - "PORT:8000"
    healthcheck:
      test: ["CMD", "curl", "-fs", "-S", "--max-time", "2", "URL:PORT"]
      interval: 30s
      timeout: 10s
      retries: 5
    volumes:
      - /DIR/data:/usr/src/paperless/data
      - /DIR/media:/usr/src/paperless/media
      - /DIR/export:/usr/src/paperless/export
      - /DIR/consume:/usr/src/paperless/consume
    environment:
      PAPERLESS_REDIS: redis://broker:6379
      PAPERLESS_DBHOST: db
      USERMAP_UID: 1000
      USERMAP_GID: 1000
      PAPERLESS_URL: "URL"
      PAPERLESS_OCR_LANGUAGES: fra
      PAPERLESS_SECRET_KEY: 
      PAPERLESS_TIME_ZONE: America/New_York
      PAPERLESS_OCR_LANGUAGE: fra

volumes:
  data:
  media:
  pgdata:
  redisdata:

@l4rm4nd
Copy link
Member

l4rm4nd commented Feb 26, 2023

Thanks!

I've added the latest paperless-ngx. See 88483f5

@l4rm4nd l4rm4nd closed this as completed Feb 26, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants