Browse Source

fix: correct environment assignment

master
bucde 3 years ago
parent
commit
35daf93011
1 changed files with 7 additions and 7 deletions
  1. +7
    -7
      docker-compose.yml

+ 7
- 7
docker-compose.yml View File

@ -49,14 +49,14 @@ services:
- ./consume:/usr/src/paperless/consume - ./consume:/usr/src/paperless/consume
env_file: docker-compose.env env_file: docker-compose.env
environment: environment:
PAPERLESS_ADMIN_USER=<username>
PAPERLESS_ADMIN_PASSWORD=<password>
PAPERLESS_ADMIN_USER: <username>
PAPERLESS_ADMIN_PASSWORD: <password>
PAPERLESS_REDIS: redis://broker:6379 PAPERLESS_REDIS: redis://broker:6379
PAPERLESS_DBHOST=<hostname>
PAPERLESS_DBPORT=<port>
PAPERLESS_DBNAME=<name>
PAPERLESS_DBUSER=<name>
PAPERLESS_DBPASS=<password>
PAPERLESS_DBHOST: <hostname>
PAPERLESS_DBPORT: <port>
PAPERLESS_DBNAME: <name>
PAPERLESS_DBUSER: <name>
PAPERLESS_DBPASS: <password>
volumes: volumes:


Loading…
Cancel
Save