[GH-ISSUE #151] Enviroment variables do not change port #85

Closed
opened 2026-02-26 09:36:09 +03:00 by kerem · 29 comments
Owner

Originally created by @casKd-dev on GitHub (Mar 6, 2019).
Original GitHub issue: https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/151

Do you want to request a feature or report a bug?
Bug
What is the current behavior?
The document server tries to use the default port and localhost as connection even though POSTGRESQL_SERVER_HOST and POSTGRESQL_SERVER_PORT are defined.

If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.

  1. Use latest docker image
  2. Define the two variables
  3. Compose up

What is the expected behavior?

The document server would use the ports defined

Did this work in previous versions of DocumentServer?

Not tested

DocumentServer Docker tag:

onlyoffice/documentserver:5.2.8.24 (latest)

Host Operating System:

Ubuntu 16.04 xenial
x86_64 Linux 4.4.0-142-generic

Originally created by @casKd-dev on GitHub (Mar 6, 2019). Original GitHub issue: https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/151 **Do you want to request a *feature* or report a *bug*?** Bug **What is the current behavior?** The document server tries to use the default port and localhost as connection even though `POSTGRESQL_SERVER_HOST` and `POSTGRESQL_SERVER_PORT` are defined. **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem.** 1. Use latest docker image 2. Define the two variables 3. Compose up **What is the expected behavior?** The document server would use the ports defined **Did this work in previous versions of DocumentServer?** Not tested **DocumentServer Docker tag:** onlyoffice/documentserver:5.2.8.24 (latest) **Host Operating System:** Ubuntu 16.04 xenial x86_64 Linux 4.4.0-142-generic
kerem closed this issue 2026-02-26 09:36:09 +03:00
Author
Owner

@ShockwaveNN commented on GitHub (Mar 6, 2019):

Seem trouble actual only for compose
Tred to use docker run env - and everything fine

docker run -it -p 80:80 -e POSTGRESQL_SERVER_HOST=192.168.1.1 -e POSTGRESQL_SERVER_PORT=1234 onlyoffice/documentserver:latest
Waiting for connection to the 192.168.1.1 host on port 1234

Define the two variables

How did you define them? Do you edit docker-compose or somehow else?

<!-- gh-comment-id:470004572 --> @ShockwaveNN commented on GitHub (Mar 6, 2019): Seem trouble actual only for compose Tred to use docker run env - and everything fine ``` docker run -it -p 80:80 -e POSTGRESQL_SERVER_HOST=192.168.1.1 -e POSTGRESQL_SERVER_PORT=1234 onlyoffice/documentserver:latest Waiting for connection to the 192.168.1.1 host on port 1234 ``` > Define the two variables How did you define them? Do you edit docker-compose or somehow else?
Author
Owner

@casKd-dev commented on GitHub (Mar 6, 2019):

Seem trouble actual only for compose
Tred to use docker run env - and everything fine

I actually used also docker run with the variables too, same result. Here is what i've tried:

docker-compose.yml

version: '2'
services:
  documentserver:
    image: onlyoffice/documentserver:latest
    environment:
      - HTTP_CHECK=GET office.redxen.eu/healthcheck
      - EXTRA_SETTINGS=http-check expect string true
      - POSTGRESQL_SERVER_HOST=HOST
      - POSTGRESQL_SERVER_PORT=PORT
      - POSTGRESQL_SERVER_DB_NAME=onlyoffice
      - POSTGRESQL_SERVER_USER=onlyoffice
      - POSTGRESQL_SERVER_PASS=PASSWORD
    stdin_open: true
    restart: always
    ports:
      - 3777:80
    volumes:
       - ./config/local.json:/etc/onlyoffice/documentserver/local.json

docker run

docker run -e POSTGRESQL_SERVER_HOST=HOST -e POSTGRESQL_SERVER_PORT=PORT -e POSTGRESQL_SERVER_DB_NAME=onlyoffice -e POSTGRESQL_SERVER_USER=onlyoffice -e POSTGRESQL_SERVER_PASSWORD=PASSWORD -v /root/onlyoffice/config/local.json:/etc/onlyoffice/documentserver/local.json onlyoffice/documentserver:latest

<!-- gh-comment-id:470091732 --> @casKd-dev commented on GitHub (Mar 6, 2019): > Seem trouble actual only for compose > Tred to use docker run env - and everything fine I actually used also docker run with the variables too, same result. Here is what i've tried: **docker-compose.yml** ``` version: '2' services: documentserver: image: onlyoffice/documentserver:latest environment: - HTTP_CHECK=GET office.redxen.eu/healthcheck - EXTRA_SETTINGS=http-check expect string true - POSTGRESQL_SERVER_HOST=HOST - POSTGRESQL_SERVER_PORT=PORT - POSTGRESQL_SERVER_DB_NAME=onlyoffice - POSTGRESQL_SERVER_USER=onlyoffice - POSTGRESQL_SERVER_PASS=PASSWORD stdin_open: true restart: always ports: - 3777:80 volumes: - ./config/local.json:/etc/onlyoffice/documentserver/local.json ``` **docker run** `docker run -e POSTGRESQL_SERVER_HOST=HOST -e POSTGRESQL_SERVER_PORT=PORT -e POSTGRESQL_SERVER_DB_NAME=onlyoffice -e POSTGRESQL_SERVER_USER=onlyoffice -e POSTGRESQL_SERVER_PASSWORD=PASSWORD -v /root/onlyoffice/config/local.json:/etc/onlyoffice/documentserver/local.json onlyoffice/documentserver:latest`
Author
Owner

@ShockwaveNN commented on GitHub (Mar 6, 2019):

@casKd-dev try to run your command without mounting local.json

<!-- gh-comment-id:470098047 --> @ShockwaveNN commented on GitHub (Mar 6, 2019): @casKd-dev try to run your command without mounting `local.json`
Author
Owner

@casKd-dev commented on GitHub (Mar 6, 2019):

@casKd-dev try to run your command without mounting local.json

Did that, no change. Forgot to add that the host is properly set.
So POSTGRESQL_SERVER_HOST is working but POSTGRESQL_SERVER_PORT is not. Maybe the variable has been changed?

<!-- gh-comment-id:470120669 --> @casKd-dev commented on GitHub (Mar 6, 2019): > @casKd-dev try to run your command without mounting `local.json` Did that, no change. Forgot to add that the host is properly set. So `POSTGRESQL_SERVER_HOST` is working but `POSTGRESQL_SERVER_PORT` is not. Maybe the variable has been changed?
Author
Owner

@casKd-dev commented on GitHub (Apr 10, 2019):

Okay, after a full re-install the port is still not defined. This needs some testing as i am not really sure where the problem really is.

docker-compose.yml related part:

documentserver:
    image: onlyoffice/documentserver
    environment:
      POSTGRESQL_SERVER_HOST: 'xxxxx'
      POSTGRESQL_SERVER_PORT: '31002'
      POSTGRESQL_SERVER_DB_NAME: 'onlyoffice'
      POSTGRESQL_SERVER_USER: 'onlyoffice'
      POSTGRESQL_SERVER_PASS: 'xxxxx'
      REDIS_SERVER_HOST: 'xxxxx'
      REDIS_SERVER_PORT: 'xxxxx'
      JWT_ENABLED: 'true'
      JWT_SECRET: 'xxxxxxxxxxxxx'
    ports:
    - target: 80
      published: xxxxx
      protocol: tcp
      mode: host
    stdin_open: true

The log output when starting the container:

Usage: grep [OPTION]... PATTERN [FILE]...
Try 'grep --help' for more information.
psql: could not connect to server: Connection timed out
 Is the server running on host "xxxxxxx" and accepting
 TCP/IP connections on port 5432?
<!-- gh-comment-id:481721660 --> @casKd-dev commented on GitHub (Apr 10, 2019): Okay, after a full re-install the port is still not defined. This needs some testing as i am not really sure where the problem really is. docker-compose.yml related part: ``` documentserver: image: onlyoffice/documentserver environment: POSTGRESQL_SERVER_HOST: 'xxxxx' POSTGRESQL_SERVER_PORT: '31002' POSTGRESQL_SERVER_DB_NAME: 'onlyoffice' POSTGRESQL_SERVER_USER: 'onlyoffice' POSTGRESQL_SERVER_PASS: 'xxxxx' REDIS_SERVER_HOST: 'xxxxx' REDIS_SERVER_PORT: 'xxxxx' JWT_ENABLED: 'true' JWT_SECRET: 'xxxxxxxxxxxxx' ports: - target: 80 published: xxxxx protocol: tcp mode: host stdin_open: true ``` The log output when starting the container: ``` Usage: grep [OPTION]... PATTERN [FILE]... Try 'grep --help' for more information. psql: could not connect to server: Connection timed out Is the server running on host "xxxxxxx" and accepting TCP/IP connections on port 5432? ```
Author
Owner

@ShockwaveNN commented on GitHub (Apr 22, 2019):

@casKd-dev Hi, I'm still was not able to reproduce your issue, could you provide minimal docker-compose.yml file in which your problem is reproduces?

<!-- gh-comment-id:485450940 --> @ShockwaveNN commented on GitHub (Apr 22, 2019): @casKd-dev Hi, I'm still was not able to reproduce your issue, could you provide minimal `docker-compose.yml` file in which your problem is reproduces?
Author
Owner

@ShockwaveNN commented on GitHub (Apr 22, 2019):

Oops, sorry didn't mean to close it

<!-- gh-comment-id:485451031 --> @ShockwaveNN commented on GitHub (Apr 22, 2019): Oops, sorry didn't mean to close it
Author
Owner

@casKd-dev commented on GitHub (May 1, 2019):

@casKd-dev Hi, I'm still was not able to reproduce your issue, could you provide minimal docker-compose.yml file in which your problem is reproduces?

@ShockwaveNN here it is

version: '3.7'
services:
  documentserver:
      image: onlyoffice/documentserver:latest
      stdin_open: true
      environment:
        POSTGRESQL_SERVER_HOST: 'localhost'
        POSTGRESQL_SERVER_PORT: '5444'
        POSTGRESQL_SERVER_DB_NAME: 'onlyoffice'
        POSTGRESQL_SERVER_USER: 'onlyoffice'
        POSTGRESQL_SERVER_PASS: 'password'
        REDIS_SERVER_HOST: 'localhost'
        REDIS_SERVER_PORT: '6377'
        JWT_ENABLED: 'true'
        JWT_SECRET: 'password111'
      ports:
        - '8080:80'
<!-- gh-comment-id:488373329 --> @casKd-dev commented on GitHub (May 1, 2019): > @casKd-dev Hi, I'm still was not able to reproduce your issue, could you provide minimal `docker-compose.yml` file in which your problem is reproduces? @ShockwaveNN here it is ```yaml version: '3.7' services: documentserver: image: onlyoffice/documentserver:latest stdin_open: true environment: POSTGRESQL_SERVER_HOST: 'localhost' POSTGRESQL_SERVER_PORT: '5444' POSTGRESQL_SERVER_DB_NAME: 'onlyoffice' POSTGRESQL_SERVER_USER: 'onlyoffice' POSTGRESQL_SERVER_PASS: 'password' REDIS_SERVER_HOST: 'localhost' REDIS_SERVER_PORT: '6377' JWT_ENABLED: 'true' JWT_SECRET: 'password111' ports: - '8080:80' ```
Author
Owner

@ShockwaveNN commented on GitHub (May 6, 2019):

@casKd-dev I don't think this is correct compose file, there is no service key. Is this just a part? Is there also postgres service in this compose file?

<!-- gh-comment-id:489558415 --> @ShockwaveNN commented on GitHub (May 6, 2019): @casKd-dev I don't think this is correct compose file, there is no `service` key. Is this just a part? Is there also postgres service in this compose file?
Author
Owner

@casKd-dev commented on GitHub (May 6, 2019):

@casKd-dev I don't think this is correct compose file, there is no service key. Is this just a part? Is there also postgres service in this compose file?

No, it is just a example i've written that is close to my example, i've changed it.

<!-- gh-comment-id:489667943 --> @casKd-dev commented on GitHub (May 6, 2019): > @casKd-dev I don't think this is correct compose file, there is no `service` key. Is this just a part? Is there also postgres service in this compose file? No, it is just a example i've written that is close to my example, i've changed it.
Author
Owner

@ShockwaveNN commented on GitHub (May 6, 2019):

@casKd-dev could you provide a full example? There is postgres server is located? In docker-compose or on real server?

<!-- gh-comment-id:489668522 --> @ShockwaveNN commented on GitHub (May 6, 2019): @casKd-dev could you provide a full example? There is postgres server is located? In docker-compose or on real server?
Author
Owner

@casKd-dev commented on GitHub (May 6, 2019):

@casKd-dev could you provide a full example? There is postgres server is located? In docker-compose or on real server?

@ShockwaveNN
It has the same behaviour for both cases, i will provide a full example then:

version: '3.7'
services:
  documentserver:
      image: onlyoffice/documentserver:latest
      stdin_open: true
      environment:
        POSTGRESQL_SERVER_HOST: 'postgres'
        POSTGRESQL_SERVER_PORT: '6377'
        POSTGRESQL_SERVER_DB_NAME: 'onlyoffice'
        POSTGRESQL_SERVER_USER: 'root'
        POSTGRESQL_SERVER_PASS: 'ExAmPLEPassword123'
      ports:
        - '8080:80'
  postgres:
    image: postgres
    environment:
      POSTGRES_PASSWORD: 'ExAmPLEPassword123'
    ports:
      - '6377:5432' 
<!-- gh-comment-id:489672697 --> @casKd-dev commented on GitHub (May 6, 2019): > @casKd-dev could you provide a full example? There is postgres server is located? In docker-compose or on real server? @ShockwaveNN It has the same behaviour for both cases, i will provide a full example then: ```yaml version: '3.7' services: documentserver: image: onlyoffice/documentserver:latest stdin_open: true environment: POSTGRESQL_SERVER_HOST: 'postgres' POSTGRESQL_SERVER_PORT: '6377' POSTGRESQL_SERVER_DB_NAME: 'onlyoffice' POSTGRESQL_SERVER_USER: 'root' POSTGRESQL_SERVER_PASS: 'ExAmPLEPassword123' ports: - '8080:80' postgres: image: postgres environment: POSTGRES_PASSWORD: 'ExAmPLEPassword123' ports: - '6377:5432'
Author
Owner

@ShockwaveNN commented on GitHub (May 6, 2019):

@casKd-dev so DocumentServer trying to connect to postgres on 5444, but postgres is on 6777 port? Just a typo?
Also I'm not sure about networking between containers.
I think you should start by starting container with DocumentServer, attach to it into bash and check from bash that postgres server is available from DocumentServer container

<!-- gh-comment-id:489681794 --> @ShockwaveNN commented on GitHub (May 6, 2019): @casKd-dev so DocumentServer trying to connect to postgres on `5444`, but postgres is on 6777 port? Just a typo? Also I'm not sure about networking between containers. I think you should start by starting container with DocumentServer, attach to it into `bash` and check from `bash` that postgres server is available from DocumentServer container
Author
Owner

@casKd-dev commented on GitHub (May 6, 2019):

@casKd-dev so DocumentServer trying to connect to postgres on 5444, but postgres is on 6777 port? Just a typo?
Also I'm not sure about networking between containers.
I think you should start by starting container with DocumentServer, attach to it into bash and check from bash that postgres server is available from DocumentServer container

The container is accessible, i have tested that, but the DocumentServer doesn't use the environment variable for some reason, maybe the variable was removed in some previous commit so now it doesn't get used anymore?

No matter if the database is external or on the same docker network, it behaves the same. @ShockwaveNN

<!-- gh-comment-id:489682435 --> @casKd-dev commented on GitHub (May 6, 2019): > @casKd-dev so DocumentServer trying to connect to postgres on `5444`, but postgres is on 6777 port? Just a typo? > Also I'm not sure about networking between containers. > I think you should start by starting container with DocumentServer, attach to it into `bash` and check from `bash` that postgres server is available from DocumentServer container The container is accessible, i have tested that, but the DocumentServer doesn't use the environment variable for some reason, maybe the variable was removed in some previous commit so now it doesn't get used anymore? No matter if the database is external or on the same docker network, it behaves the same. @ShockwaveNN
Author
Owner

@ShockwaveNN commented on GitHub (May 6, 2019):

@casKd-dev ok then, still could you provide correct docker-compose? It's clearly different ports in your last one, or I'm can't understand something

<!-- gh-comment-id:489684609 --> @ShockwaveNN commented on GitHub (May 6, 2019): @casKd-dev ok then, still could you provide correct `docker-compose`? It's clearly different ports in your last one, or I'm can't understand something
Author
Owner

@ShockwaveNN commented on GitHub (May 6, 2019):

Also why REDIS_SERVER_HOST: 'postgres' postgres in that part

<!-- gh-comment-id:489684864 --> @ShockwaveNN commented on GitHub (May 6, 2019): Also why `REDIS_SERVER_HOST: 'postgres'` postgres in that part
Author
Owner

@casKd-dev commented on GitHub (May 6, 2019):

My bad, i have overlooked that. Now it should be fine @ShockwaveNN

<!-- gh-comment-id:489685250 --> @casKd-dev commented on GitHub (May 6, 2019): My bad, i have overlooked that. Now it should be fine @ShockwaveNN
Author
Owner

@ShockwaveNN commented on GitHub (May 7, 2019):

@casKd-dev but ports are still different
In DocumentServer container postgres port is 6377, in postgres container 6777

<!-- gh-comment-id:489970007 --> @ShockwaveNN commented on GitHub (May 7, 2019): @casKd-dev but ports are still different In DocumentServer container postgres port is 6377, in postgres container 6777
Author
Owner

@mamema commented on GitHub (Jun 4, 2019):

i have the same issue. try to set var to 3306 (mysql - mariadb 10) and the logs asking about "is there a server on 5432 port

<!-- gh-comment-id:498713140 --> @mamema commented on GitHub (Jun 4, 2019): i have the same issue. try to set var to 3306 (mysql - mariadb 10) and the logs asking about "is there a server on 5432 port
Author
Owner

@casKd-dev commented on GitHub (Jun 7, 2019):

@ShockwaveNN Did you use the Docker Hub version? Did you pull the latest version?

<!-- gh-comment-id:499962950 --> @casKd-dev commented on GitHub (Jun 7, 2019): @ShockwaveNN Did you use the Docker Hub version? Did you pull the latest version?
Author
Owner

@ShockwaveNN commented on GitHub (Jun 17, 2019):

@casKd-dev Hi, could you provide full docker-compose.yml for which I'll be able to reproduce your problem?

<!-- gh-comment-id:502590798 --> @ShockwaveNN commented on GitHub (Jun 17, 2019): @casKd-dev Hi, could you provide full `docker-compose.yml` for which I'll be able to reproduce your problem?
Author
Owner

@casKd-dev commented on GitHub (Jun 17, 2019):

@casKd-dev Hi, could you provide full docker-compose.yml for which I'll be able to reproduce your problem?

@ShockwaveNN
The problem can be reproduced with and without a postgres connection, it doesn't matter whatsoever as the variable is not set in the configurations. I've updated the example above to be correct.

<!-- gh-comment-id:502710183 --> @casKd-dev commented on GitHub (Jun 17, 2019): > @casKd-dev Hi, could you provide full `docker-compose.yml` for which I'll be able to reproduce your problem? @ShockwaveNN The problem can be reproduced with and without a postgres connection, it doesn't matter whatsoever as the variable is not set in the configurations. I've updated the example above to be correct.
Author
Owner

@ShockwaveNN commented on GitHub (Jun 17, 2019):

@casKd-dev which one, it's plenty of examples in this thread and all of them seems not updated, I think if you add example in next message it'll be easier to read :)

<!-- gh-comment-id:502713065 --> @ShockwaveNN commented on GitHub (Jun 17, 2019): @casKd-dev which one, it's plenty of examples in this thread and all of them seems not updated, I think if you add example in next message it'll be easier to read :)
Author
Owner

@casKd-dev commented on GitHub (Jun 17, 2019):

version: '3.7'
services:
  documentserver:
      image: onlyoffice/documentserver:latest
      stdin_open: true
      environment:
        POSTGRESQL_SERVER_HOST: 'postgres'
        POSTGRESQL_SERVER_PORT: '6377'
        POSTGRESQL_SERVER_DB_NAME: 'onlyoffice'
        POSTGRESQL_SERVER_USER: 'root'
        POSTGRESQL_SERVER_PASS: 'ExAmPLEPassword123'
      ports:
        - '8080:80'
  postgres:
    image: postgres
    environment:
      POSTGRES_PASSWORD: 'ExAmPLEPassword123'
    ports:
      - '6377:5432' 
<!-- gh-comment-id:502713443 --> @casKd-dev commented on GitHub (Jun 17, 2019): > ```yaml > version: '3.7' > services: > documentserver: > image: onlyoffice/documentserver:latest > stdin_open: true > environment: > POSTGRESQL_SERVER_HOST: 'postgres' > POSTGRESQL_SERVER_PORT: '6377' > POSTGRESQL_SERVER_DB_NAME: 'onlyoffice' > POSTGRESQL_SERVER_USER: 'root' > POSTGRESQL_SERVER_PASS: 'ExAmPLEPassword123' > ports: > - '8080:80' > postgres: > image: postgres > environment: > POSTGRES_PASSWORD: 'ExAmPLEPassword123' > ports: > - '6377:5432' > ```
Author
Owner

@ShockwaveNN commented on GitHub (Jun 17, 2019):

@casKd-dev at least first problem I see at your code - there is no predefined network in your example, so documentserver container and postgres container do not see each other (see https://github.com/ONLYOFFICE/Docker-DocumentServer/blob/master/docker-compose.yml#L108)

<!-- gh-comment-id:502724846 --> @ShockwaveNN commented on GitHub (Jun 17, 2019): @casKd-dev at least first problem I see at your code - there is no predefined network in your example, so documentserver container and postgres container do not see each other (see https://github.com/ONLYOFFICE/Docker-DocumentServer/blob/master/docker-compose.yml#L108)
Author
Owner

@casKd-dev commented on GitHub (Jun 18, 2019):

@casKd-dev at least first problem I see at your code - there is no predefined network in your example, so documentserver container and postgres container do not see each other (see https://github.com/ONLYOFFICE/Docker-DocumentServer/blob/master/docker-compose.yml#L108)

There is no need for postgres at all, if you start the container without postgres but with the port changed you will see it will still attempt to connect to the default port. For testing purposes it makes no change. The case is not something that heavily depends on the dependencies themselves.

<!-- gh-comment-id:502893742 --> @casKd-dev commented on GitHub (Jun 18, 2019): > @casKd-dev at least first problem I see at your code - there is no predefined network in your example, so documentserver container and postgres container do not see each other (see https://github.com/ONLYOFFICE/Docker-DocumentServer/blob/master/docker-compose.yml#L108) There is no need for postgres at all, if you start the container without postgres but with the port changed you will see it will still attempt to connect to the default port. For testing purposes it makes no change. The case is not something that heavily depends on the dependencies themselves.
Author
Owner

@ShockwaveNN commented on GitHub (Jun 19, 2019):

@casKd-dev

if you start the container without postgres but with the port changed you will see it will still attempt to connect to the default port

How to reproduce it? This comment is still actual with latest version
https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/151#issuecomment-470004572

But maybe I'm doing something wrong

<!-- gh-comment-id:503477971 --> @ShockwaveNN commented on GitHub (Jun 19, 2019): @casKd-dev >if you start the container without postgres but with the port changed you will see it will still attempt to connect to the default port How to reproduce it? This comment is still actual with latest version https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/151#issuecomment-470004572 But maybe I'm doing something wrong
Author
Owner

@casKd-dev commented on GitHub (Jun 19, 2019):

But maybe I'm doing something wrong

Apparently, not. Seems like a recent commit fixed it as i have tested a minimal case and i cannot reproduce it anymore. I will close this.
image

<!-- gh-comment-id:503514307 --> @casKd-dev commented on GitHub (Jun 19, 2019): > But maybe I'm doing something wrong Apparently, not. Seems like a recent commit fixed it as i have tested a minimal case and i cannot reproduce it anymore. I will close this. ![image](https://user-images.githubusercontent.com/30688640/59760559-e1a3ce00-9292-11e9-9f1a-8562d47053f6.png)
Author
Owner
<!-- gh-comment-id:503515984 --> @ShockwaveNN commented on GitHub (Jun 19, 2019): Good to hear :) On Wed, Jun 19, 2019, 14:05 Alex <notifications@github.com> wrote: > Closed #151 > <https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/151>. > > — > You are receiving this because you were mentioned. > Reply to this email directly, view it on GitHub > <https://github.com/ONLYOFFICE/Docker-DocumentServer/issues/151?email_source=notifications&email_token=AAFDG3CJYH3VLWCHJ5MMW7LP3IHIRA5CNFSM4G37Z4X2YY3PNVWWK3TUL52HS4DFWZEXG43VMVCXMZLOORHG65DJMZUWGYLUNFXW5KTDN5WW2ZLOORPWSZGOSB34TCA#event-2423769480>, > or mute the thread > <https://github.com/notifications/unsubscribe-auth/AAFDG3GKMER3T2ZMXN5J2O3P3IHIRANCNFSM4G37Z4XQ> > . >
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/Docker-DocumentServer-ONLYOFFICE#85
No description provided.