adapt comments for use in devcontainer

This commit is contained in:
Philipp 2024-06-21 21:13:25 +00:00
parent 919f24acd8
commit 635f139153

View File

@ -1,9 +1,9 @@
# docker-compose file for running paperless from the docker container registry. # Docker Compose file for developing Paperless NGX in VSCode DevContainers.
# This file contains everything paperless needs to run. # This file contains everything Paperless NGX needs to run.
# Paperless supports amd64, arm and arm64 hardware. # Paperless supports amd64, arm, and arm64 hardware.
# All compose files of paperless configure paperless in the following way: # All compose files of Paperless configure it in the following way:
# #
# - Paperless is (re)started on system boot, if it was running before shutdown. # - Paperless is (re)started on system boot if it was running before shutdown.
# - Docker volumes for storing data are managed by Docker. # - Docker volumes for storing data are managed by Docker.
# - Folders for importing and exporting files are created in the same directory # - Folders for importing and exporting files are created in the same directory
# as this file and mounted to the correct folders inside the container. # as this file and mounted to the correct folders inside the container.
@ -11,24 +11,16 @@
# #
# SQLite is used as the database. The SQLite file is stored in the data volume. # SQLite is used as the database. The SQLite file is stored in the data volume.
# #
# In addition to that, this docker-compose file adds the following optional # In addition, this Docker Compose file adds the following optional
# configurations: # configurations:
# #
# - Apache Tika and Gotenberg servers are started with paperless and paperless # - Apache Tika and Gotenberg servers are started with Paperless NGX and Paperless
# is configured to use these services. These provide support for consuming # is configured to use these services. These provide support for consuming
# Office documents (Word, Excel, Power Point and their LibreOffice counter- # Office documents (Word, Excel, PowerPoint, and their LibreOffice counterparts).
# parts.
# #
# To install and update paperless with this file, do the following: # This file is intended only to be used through VSCOde devcontainers. See README.md
# # in the folder .devcontainer.
# - Copy this file as 'docker-compose.yml' and the files 'docker-compose.env'
# and '.env' into a folder.
# - Run 'docker-compose pull'.
# - Run 'docker-compose run --rm webserver createsuperuser' to create a user.
# - Run 'docker-compose up -d'.
#
# For more extensive installation and update instructions, refer to the
# documentation.
version: "3.4" version: "3.4"
services: services:
@ -38,11 +30,11 @@ services:
volumes: volumes:
- redisdata:/data - redisdata:/data
# No ports need to be exposed, the vscode devcontainer plugin manages them. # No ports need to be exposed; the VSCode DevContainer plugin manages them.
paperless-development: paperless-development:
image: paperless-ngx image: paperless-ngx
build: build:
context: ../ # Dockerfile can not access files from parent directories if context is not set. context: ../ # Dockerfile cannot access files from parent directories if context is not set.
dockerfile: ./.devcontainer/Dockerfile dockerfile: ./.devcontainer/Dockerfile
restart: unless-stopped restart: unless-stopped
depends_on: depends_on:
@ -51,9 +43,9 @@ services:
- tika - tika
volumes: volumes:
- ..:/usr/src/paperless/paperless-ngx:delegated - ..:/usr/src/paperless/paperless-ngx:delegated
- ../.devcontainer/vscode:/usr/src/paperless/paperless-ngx/.vscode:delegated # vscode config files - ../.devcontainer/vscode:/usr/src/paperless/paperless-ngx/.vscode:delegated # VSCode config files
- pipenv:/usr/src/paperless/paperless-ngx/.venv # pipenv environment persisted in volume - pipenv:/usr/src/paperless/paperless-ngx/.venv # Pipenv environment persisted in volume
- /usr/src/paperless/paperless-ngx/src/documents/static/frontend # static frontend files exist only in container - /usr/src/paperless/paperless-ngx/src/documents/static/frontend # Static frontend files exist only in container
- /usr/src/paperless/paperless-ngx/src/.pytest_cache - /usr/src/paperless/paperless-ngx/src/.pytest_cache
- /usr/src/paperless/paperless-ngx/.ruff_cache - /usr/src/paperless/paperless-ngx/.ruff_cache
- /usr/src/paperless/paperless-ngx/htmlcov - /usr/src/paperless/paperless-ngx/htmlcov
@ -69,14 +61,14 @@ services:
PAPERLESS_DEBUG: true PAPERLESS_DEBUG: true
# Overrides default command so things don't shut down after the process ends. # Overrides default command so things don't shut down after the process ends.
command: /bin/sh -c "chown -R paperless:paperless /usr/src/paperless/paperless-ngx/src/documents/static/frontend && chown -R paperless:paperless /usr/src/paperless/paperless-ngx/.ruff_cache &&while sleep 1000; do :; done" command: /bin/sh -c "chown -R paperless:paperless /usr/src/paperless/paperless-ngx/src/documents/static/frontend && chown -R paperless:paperless /usr/src/paperless/paperless-ngx/.ruff_cache && while sleep 1000; do :; done"
gotenberg: gotenberg:
image: docker.io/gotenberg/gotenberg:7.8 image: docker.io/gotenberg/gotenberg:7.8
restart: unless-stopped restart: unless-stopped
# The gotenberg chromium route is used to convert .eml files. We do not # The Gotenberg Chromium route is used to convert .eml files. We do not
# want to allow external content like tracking pixels or even javascript. # want to allow external content like tracking pixels or even JavaScript.
command: command:
- "gotenberg" - "gotenberg"
- "--chromium-disable-javascript=true" - "--chromium-disable-javascript=true"