This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated some dependencies, updated docker files
- Loading branch information
Jonas Winkler
committed
Nov 13, 2020
1 parent
0421031
commit f92ee00
Showing
8 changed files
with
110 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,8 +75,8 @@ WORKDIR /usr/src/paperless/src/ | |
|
||
RUN sudo -HEu paperless python3 manage.py collectstatic --clear --no-input | ||
|
||
VOLUME ["/usr/src/paperless/data", "/usr/src/paperless/consume", "/usr/src/paperless/export"] | ||
VOLUME ["/usr/src/paperless/data", "/usr/src/paperless/media", "/usr/src/paperless/consume", "/usr/src/paperless/export"] | ||
ENTRYPOINT ["/sbin/docker-entrypoint.sh"] | ||
CMD ["supervisord", "-c", "/etc/supervisord.conf"] | ||
CMD ["/usr/local/bin/supervisord", "-c", "/etc/supervisord.conf"] | ||
|
||
LABEL maintainer="Jonas Winkler <[email protected]>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
version: "3.4" | ||
services: | ||
broker: | ||
image: redis:6.0 | ||
restart: always | ||
|
||
webserver: | ||
image: jonaswinkler/paperless-ng:latest | ||
restart: always | ||
depends_on: | ||
- broker | ||
ports: | ||
- 8000:8000 | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:8000"] | ||
interval: 30s | ||
timeout: 10s | ||
retries: 5 | ||
volumes: | ||
- data:/usr/src/paperless/data | ||
- media:/usr/src/paperless/media | ||
- ./export:/usr/src/paperless/export | ||
- ./consume:/usr/src/paperless/consume | ||
env_file: docker-compose.env | ||
environment: | ||
PAPERLESS_REDIS: redis://broker:6379 | ||
|
||
|
||
volumes: | ||
data: | ||
media: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters