2016-07-07 17:13:26 +03:00
|
|
|
version: '2'
|
|
|
|
services:
|
2016-07-11 11:47:22 +03:00
|
|
|
onlyoffice-documentserver-data:
|
|
|
|
container_name: onlyoffice-documentserver-data
|
2016-09-09 11:49:14 +03:00
|
|
|
image: onlyoffice/documentserver:latest
|
2016-07-07 17:13:26 +03:00
|
|
|
environment:
|
2016-07-11 13:53:45 +03:00
|
|
|
- ONLYOFFICE_DATA_CONTAINER=true
|
2016-08-26 15:10:53 +03:00
|
|
|
- POSTGRESQL_SERVER_HOST=onlyoffice-postgresql
|
2016-08-25 19:52:14 +03:00
|
|
|
- POSTGRESQL_SERVER_PORT=5432
|
|
|
|
- POSTGRESQL_SERVER_DB_NAME=onlyoffice
|
2016-08-26 15:20:13 +03:00
|
|
|
- POSTGRESQL_SERVER_USER=onlyoffice
|
2019-02-14 15:19:13 +03:00
|
|
|
- AMQP_SERVER_URL=amqp://guest:guest@onlyoffice-rabbitmq
|
2016-07-07 17:13:26 +03:00
|
|
|
- REDIS_SERVER_HOST=onlyoffice-redis
|
|
|
|
- REDIS_SERVER_PORT=6379
|
2016-07-11 11:47:22 +03:00
|
|
|
stdin_open: true
|
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
volumes:
|
2018-11-02 11:53:06 +03:00
|
|
|
- /etc/onlyoffice
|
2016-07-11 11:47:22 +03: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 14:09:25 +03:00
|
|
|
image: onlyoffice/documentserver:latest
|
2016-07-11 11:47:22 +03:00
|
|
|
depends_on:
|
|
|
|
- onlyoffice-documentserver-data
|
2016-08-25 19:52:14 +03:00
|
|
|
- onlyoffice-postgresql
|
2016-07-11 11:47:22 +03:00
|
|
|
- onlyoffice-redis
|
|
|
|
- onlyoffice-rabbitmq
|
|
|
|
environment:
|
2016-07-20 18:56:20 +03:00
|
|
|
- ONLYOFFICE_DATA_CONTAINER_HOST=onlyoffice-documentserver-data
|
2016-07-12 15:37:09 +03:00
|
|
|
- BALANCE=uri depth 3
|
2016-08-17 15:54:19 +03:00
|
|
|
- EXCLUDE_PORTS=443
|
2016-07-15 17:14:18 +03:00
|
|
|
- HTTP_CHECK=GET /healthcheck
|
|
|
|
- EXTRA_SETTINGS=http-check expect string true
|
2016-07-15 16:31:53 +03:00
|
|
|
# Uncomment the string below to redirect HTTP request to HTTPS request.
|
|
|
|
#- FORCE_SSL=true
|
2016-07-07 17:13:26 +03:00
|
|
|
stdin_open: true
|
|
|
|
restart: always
|
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
expose:
|
|
|
|
- '80'
|
2016-07-11 11:47:22 +03:00
|
|
|
volumes_from:
|
2016-07-11 13:52:09 +03:00
|
|
|
- onlyoffice-documentserver-data
|
2016-07-07 17:13:26 +03:00
|
|
|
|
|
|
|
onlyoffice-haproxy:
|
|
|
|
container_name: onlyoffice-haproxy
|
2016-07-15 16:31:53 +03:00
|
|
|
image: dockercloud/haproxy:1.5.1
|
2016-07-07 17:13:26 +03:00
|
|
|
depends_on:
|
2016-07-11 11:47:22 +03:00
|
|
|
- onlyoffice-documentserver
|
2016-07-07 17:13:26 +03:00
|
|
|
environment:
|
2016-07-12 15:07:52 +03:00
|
|
|
- MODE=http
|
2016-07-15 16:31:53 +03:00
|
|
|
# Uncomment the string below to specify the path of ssl certificates
|
|
|
|
#- CERT_FOLDER=/certs/
|
2016-07-07 17:13:26 +03:00
|
|
|
stdin_open: true
|
|
|
|
links:
|
2016-07-11 11:47:22 +03:00
|
|
|
- onlyoffice-documentserver
|
2016-07-07 17:13:26 +03:00
|
|
|
volumes:
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
2016-07-15 16:31:53 +03: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 17:13:26 +03: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 19:52:14 +03:00
|
|
|
onlyoffice-postgresql:
|
|
|
|
container_name: onlyoffice-postgresql
|
|
|
|
image: postgres:9.5
|
2016-07-07 17:13:26 +03:00
|
|
|
environment:
|
2016-08-25 19:52:14 +03:00
|
|
|
- POSTGRES_DB=onlyoffice
|
|
|
|
- POSTGRES_USER=onlyoffice
|
2016-07-07 17:13:26 +03:00
|
|
|
networks:
|
|
|
|
- onlyoffice
|
|
|
|
restart: always
|
|
|
|
expose:
|
2016-08-25 19:52:14 +03:00
|
|
|
- '5432'
|
2016-07-07 17:13:26 +03:00
|
|
|
volumes:
|
2016-08-25 19:52:14 +03:00
|
|
|
- postgresql_data:/var/lib/postgresql
|
2016-07-07 17:13:26 +03:00
|
|
|
|
|
|
|
networks:
|
|
|
|
onlyoffice:
|
|
|
|
driver: 'bridge'
|
|
|
|
|
|
|
|
volumes:
|
2016-08-25 19:52:14 +03:00
|
|
|
postgresql_data:
|