[GH-ISSUE #22] NoReverseMatch at /admin/core/user/add/ #15

Closed
opened 2026-02-25 21:30:59 +03:00 by kerem · 3 comments
Owner

Originally created by @lagosr-github on GitHub (Jun 11, 2020).
Original GitHub issue: https://github.com/ciur/papermerge/issues/22

Crash while trying to add a user

brand new installation using docker compose files.

NoReverseMatch at  admin core user add

docker compose used:

version: '3.7'
services:
app:
image: eugenci/papermerge:1.2.2
command: python3 /opt/papermerge/manage.py runserver 0.0.0.0:8000
ports:
- "8888:8000"
depends_on:
- db
volumes:
- media_root:/opt/media
- broker_queue:/opt/broker/queue
environment:
- DJANGO_SETTINGS_MODULE=config.settings.stage
deploy:
placement:
constraints:
- node.labels.arch == amd64
- node.role == worker

db:
image: postgres:11.7
volumes:
- postgres_data:/var/lib/postgresql/data/
environment:
- POSTGRES_USER=dbuser
- POSTGRES_PASSWORD=dbpass
- POSTGRES_DB=dbname
deploy:
placement:
constraints:
- node.labels.arch == amd64
- node.role == worker

worker:
image: eugenci/papermerge-worker:1.2.x
command: bash -c "cd /opt/papermerge-worker && celery worker -A pmworker.celery -Q papermerge -l info"
volumes:
- media_root:/opt/media
- broker_queue:/opt/broker/queue
environment:
- CELERY_CONFIG_MODULE=config
- C_FORCE_ROOT=True
deploy:
placement:
constraints:
- node.labels.arch == amd64
- node.role == worker

volumes:
postgres_data:
broker_queue:
media_root:

Originally created by @lagosr-github on GitHub (Jun 11, 2020). Original GitHub issue: https://github.com/ciur/papermerge/issues/22 Crash while trying to add a user brand new installation using docker compose files. ![NoReverseMatch at admin core user add ](https://user-images.githubusercontent.com/3108304/84402049-d5f29b00-abb8-11ea-95f6-cd2e9d5c46cf.png) docker compose used: version: '3.7' services: app: image: eugenci/papermerge:1.2.2 command: python3 /opt/papermerge/manage.py runserver 0.0.0.0:8000 ports: - "8888:8000" depends_on: - db volumes: - media_root:/opt/media - broker_queue:/opt/broker/queue environment: - DJANGO_SETTINGS_MODULE=config.settings.stage deploy: placement: constraints: - node.labels.arch == amd64 - node.role == worker db: image: postgres:11.7 volumes: - postgres_data:/var/lib/postgresql/data/ environment: - POSTGRES_USER=dbuser - POSTGRES_PASSWORD=dbpass - POSTGRES_DB=dbname deploy: placement: constraints: - node.labels.arch == amd64 - node.role == worker worker: image: eugenci/papermerge-worker:1.2.x command: bash -c "cd /opt/papermerge-worker && celery worker -A pmworker.celery -Q papermerge -l info" volumes: - media_root:/opt/media - broker_queue:/opt/broker/queue environment: - CELERY_CONFIG_MODULE=config - C_FORCE_ROOT=True deploy: placement: constraints: - node.labels.arch == amd64 - node.role == worker volumes: postgres_data: broker_queue: media_root:
kerem 2026-02-25 21:30:59 +03:00
Author
Owner

@ciur commented on GitHub (Jun 11, 2020):

Ooops! First real bug.
Thank you for opening the issue, I will take care of it!

<!-- gh-comment-id:642769443 --> @ciur commented on GitHub (Jun 11, 2020): Ooops! First real bug. Thank you for opening the issue, I will take care of it!
Author
Owner

@ciur commented on GitHub (Jul 5, 2020):

Will be fixed as part of 1.4.0 release

<!-- gh-comment-id:653920101 --> @ciur commented on GitHub (Jul 5, 2020): Will be fixed as part of 1.4.0 release
Author
Owner

@ciur commented on GitHub (Jul 7, 2020):

Fixed in release 1.4.0; release will be available on 1st of August 2020.

<!-- gh-comment-id:654908431 --> @ciur commented on GitHub (Jul 7, 2020): Fixed in release 1.4.0; release will be available on 1st of August 2020.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/papermerge#15
No description provided.