2016-07-07 16:13:26 +02:00
|
|
|
version: '2'
|
|
|
|
services:
|
2016-07-11 10:47:22 +02:00
|
|
|
onlyoffice-documentserver-data:
|
|
|
|
container_name: onlyoffice-documentserver-data
|
2016-09-09 10:49:14 +02:00
|
|
|
image: onlyoffice/documentserver:latest
|
2016-07-07 16:13:26 +02:00
|
|
|
environment:
|
2016-07-11 12:53:45 +02:00
|
|
|
- ONLYOFFICE_DATA_CONTAINER=true
|
2019-10-29 10:42:43 +01:00
|
|
|
- DB_TYPE=postgres
|
|
|
|
- DB_HOST=onlyoffice-postgresql
|
|
|
|
- DB_PORT=5432
|
|
|
|
- DB_NAME=onlyoffice
|
|
|
|
- DB_USER=onlyoffice
|
2019-02-14 13:19:13 +01:00
|
|
|
- AMQP_SERVER_URL=amqp://guest:guest@onlyoffice-rabbitmq
|
2016-07-07 16:13:26 +02:00
|
|
|
- REDIS_SERVER_HOST=onlyoffice-redis
|
|
|
|
- REDIS_SERVER_PORT=6379
|
2019-09-24 11:55:24 +02:00
|
|
|
# Uncomment strings below to enable the JSON Web Token validation.
|
|
|
|
#- JWT_ENABLED=true
|
|
|
|
#- JWT_SECRET=secret
|
|
|
|
#- JWT_HEADER=Authorization
|
2019-11-27 09:35:08 +01:00
|
|
|
#- JWT_IN_BODY=true
|
2016-07-11 10:47:22 +02:00
|
|
|
stdin_open: true
|
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
volumes:
|
2018-11-02 09:53:06 +01:00
|
|
|
- /etc/onlyoffice
|
2016-07-11 10:47:22 +02:00
|
|
|
- /var/www/onlyoffice/Data
|
|
|
|
- /var/log/onlyoffice
|
|
|
|
- /var/lib/onlyoffice/documentserver/App_Data/cache/files
|
|
|
|
- /var/www/onlyoffice/documentserver-example/public/files
|
|
|
|
- /usr/share/fonts
|
|
|
|
|
|
|
|
onlyoffice-documentserver:
|
2016-09-12 13:09:25 +02:00
|
|
|
image: onlyoffice/documentserver:latest
|
2016-07-11 10:47:22 +02:00
|
|
|
depends_on:
|
|
|
|
- onlyoffice-documentserver-data
|
2016-08-25 18:52:14 +02:00
|
|
|
- onlyoffice-postgresql
|
2016-07-11 10:47:22 +02:00
|
|
|
- onlyoffice-redis
|
|
|
|
- onlyoffice-rabbitmq
|
|
|
|
environment:
|
2016-07-20 17:56:20 +02:00
|
|
|
- ONLYOFFICE_DATA_CONTAINER_HOST=onlyoffice-documentserver-data
|
2016-07-12 14:37:09 +02:00
|
|
|
- BALANCE=uri depth 3
|
2016-08-17 14:54:19 +02:00
|
|
|
- EXCLUDE_PORTS=443
|
2016-07-15 16:14:18 +02:00
|
|
|
- HTTP_CHECK=GET /healthcheck
|
|
|
|
- EXTRA_SETTINGS=http-check expect string true
|
2016-07-15 15:31:53 +02:00
|
|
|
# Uncomment the string below to redirect HTTP request to HTTPS request.
|
|
|
|
#- FORCE_SSL=true
|
2016-07-07 16:13:26 +02:00
|
|
|
stdin_open: true
|
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
expose:
|
|
|
|
- '80'
|
2016-07-11 10:47:22 +02:00
|
|
|
volumes_from:
|
2016-07-11 12:52:09 +02:00
|
|
|
- onlyoffice-documentserver-data
|
2016-07-07 16:13:26 +02:00
|
|
|
|
|
|
|
onlyoffice-haproxy:
|
|
|
|
container_name: onlyoffice-haproxy
|
2016-07-15 15:31:53 +02:00
|
|
|
image: dockercloud/haproxy:1.5.1
|
2016-07-07 16:13:26 +02:00
|
|
|
depends_on:
|
2016-07-11 10:47:22 +02:00
|
|
|
- onlyoffice-documentserver
|
2016-07-07 16:13:26 +02:00
|
|
|
environment:
|
2016-07-12 14:07:52 +02:00
|
|
|
- MODE=http
|
2016-07-15 15:31:53 +02:00
|
|
|
# Uncomment the string below to specify the path of ssl certificates
|
|
|
|
#- CERT_FOLDER=/certs/
|
2016-07-07 16:13:26 +02:00
|
|
|
stdin_open: true
|
|
|
|
links:
|
2016-07-11 10:47:22 +02:00
|
|
|
- onlyoffice-documentserver
|
2016-07-07 16:13:26 +02:00
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
2016-07-15 15:31:53 +02:00
|
|
|
# Uncomment the string below to map a ssl certificate from host
|
|
|
|
# to the proxy container
|
|
|
|
#- /app/onlyoffice/DocumentServer/data/certs/onlyoffice.pem:/certs/cert1.pem
|
2016-07-07 16:13:26 +02:00
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
ports:
|
|
|
|
- '80:80'
|
|
|
|
- '443:443'
|
|
|
|
- '1936:1936'
|
|
|
|
|
|
|
|
onlyoffice-redis:
|
|
|
|
container_name: onlyoffice-redis
|
|
|
|
image: redis
|
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
expose:
|
|
|
|
- '6379'
|
|
|
|
|
|
|
|
onlyoffice-rabbitmq:
|
|
|
|
container_name: onlyoffice-rabbitmq
|
|
|
|
image: rabbitmq
|
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
expose:
|
|
|
|
- '5672'
|
|
|
|
|
2016-08-25 18:52:14 +02:00
|
|
|
onlyoffice-postgresql:
|
|
|
|
container_name: onlyoffice-postgresql
|
|
|
|
image: postgres:9.5
|
2016-07-07 16:13:26 +02:00
|
|
|
environment:
|
2016-08-25 18:52:14 +02:00
|
|
|
- POSTGRES_DB=onlyoffice
|
|
|
|
- POSTGRES_USER=onlyoffice
|
2016-07-07 16:13:26 +02:00
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
restart: always
|
|
|
|
expose:
|
2016-08-25 18:52:14 +02:00
|
|
|
- '5432'
|
2016-07-07 16:13:26 +02:00
|
|
|
volumes:
|
2016-08-25 18:52:14 +02:00
|
|
|
- postgresql_data:/var/lib/postgresql
|
2016-07-07 16:13:26 +02:00
|
|
|
|
|
|
|
networks:
|
|
|
|
onlyoffice:
|
|
|
|
driver: 'bridge'
|
|
|
|
|
|
|
|
volumes:
|
2016-08-25 18:52:14 +02:00
|
|
|
postgresql_data:
|