Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
docker-onlyoffice-documentserver
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
TO
docker-onlyoffice-documentserver
Commits
e7b7e7dd
Commit
e7b7e7dd
authored
8 years ago
by
Alexey Golubev
Browse files
Options
Downloads
Patches
Plain Diff
made availability check the data container to ensure the correct order of starting the containers
parent
d0e12283
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
docker-compose.yml
+1
-0
1 addition, 0 deletions
docker-compose.yml
run-document-server.sh
+64
-43
64 additions, 43 deletions
run-document-server.sh
with
65 additions
and
43 deletions
docker-compose.yml
+
1
−
0
View file @
e7b7e7dd
...
...
@@ -34,6 +34,7 @@ services:
-
onlyoffice-redis
-
onlyoffice-rabbitmq
environment
:
-
ONLYOFFICE_DATA_CONTAINER_HOST=onlyoffice-documentserver-data
-
BALANCE=uri depth
3
-
HTTP_CHECK=GET /healthcheck
-
EXTRA_SETTINGS=http-check expect string
true
...
...
This diff is collapsed.
Click to expand it.
run-document-server.sh
+
64
−
43
View file @
e7b7e7dd
...
...
@@ -5,6 +5,8 @@ DATA_DIR="/var/www/onlyoffice/Data"
LOG_DIR
=
"/var/log/onlyoffice/documentserver"
ONLYOFFICE_DATA_CONTAINER
=
${
ONLYOFFICE_DATA_CONTAINER
:-
false
}
ONLYOFFICE_DATA_CONTAINER_HOST
=
${
ONLYOFFICE_DATA_CONTAINER_HOST
:-
localhost
}
ONLYOFFICE_DATA_CONTAINER_PORT
=
80
SSL_CERTIFICATES_DIR
=
"
${
DATA_DIR
}
/certs"
SSL_CERTIFICATE_PATH
=
${
SSL_CERTIFICATE_PATH
:-${
SSL_CERTIFICATES_DIR
}
/onlyoffice.crt
}
...
...
@@ -26,6 +28,9 @@ ONLYOFFICE_DEFAULT_CONFIG=/etc/onlyoffice/documentserver/default.json
JSON
=
"json -q -f
${
ONLYOFFICE_DEFAULT_CONFIG
}
"
LOCAL_SERVICES
=()
read_setting
(){
MYSQL_SERVER_HOST
=
${
MYSQL_SERVER_HOST
:-
$(
${
JSON
}
services.CoAuthoring.sql.dbHost
)
}
MYSQL_SERVER_PORT
=
${
MYSQL_SERVER_PORT
:-
$(
${
JSON
}
services.CoAuthoring.sql.dbPort
)
}
MYSQL_SERVER_DB_NAME
=
${
MYSQL_SERVER_DB_NAME
:-
$(
${
JSON
}
services.CoAuthoring.sql.dbName
)
}
...
...
@@ -40,6 +45,7 @@ RABBITMQ_SERVER_PORT=${RABBITMQ_SERVER_PORT:-"5672"}
REDIS_SERVER_HOST
=
${
REDIS_SERVER_HOST
:-
$(
${
JSON
}
services.CoAuthoring.redis.host
)
}
REDIS_SERVER_PORT
=
${
REDIS_SERVER_PORT
:-
$(
${
JSON
}
services.CoAuthoring.redis.port
)
}
}
waiting_for_connection
(){
until
nc
-z
-w
3
"
$1
"
"
$2
"
;
do
...
...
@@ -59,7 +65,9 @@ waiting_for_rabbitmq(){
waiting_for_redis
(){
waiting_for_connection
${
REDIS_SERVER_HOST
}
${
REDIS_SERVER_PORT
}
}
waiting_for_datacontainer
(){
waiting_for_connection
${
ONLYOFFICE_DATA_CONTAINER_HOST
}
${
ONLYOFFICE_DATA_CONTAINER_PORT
}
}
update_mysql_settings
(){
${
JSON
}
-I
-e
"this.services.CoAuthoring.sql.dbHost = '
${
MYSQL_SERVER_HOST
}
'"
${
JSON
}
-I
-e
"this.services.CoAuthoring.sql.dbPort = '
${
MYSQL_SERVER_PORT
}
'"
...
...
@@ -90,7 +98,7 @@ create_mysql_db(){
${
MYSQL
}
"
${
MYSQL_SERVER_DB_NAME
}
"
<
"
${
APP_DIR
}
/server/schema/createdb.sql"
}
start_nginx
(){
update_nginx_settings
(){
# Set up nginx
sed
's/^worker_processes.*/'
"worker_processes
${
NGINX_WORKER_PROCESSES
}
;"
'/'
-i
${
NGINX_CONFIG_PATH
}
sed
's/worker_connections.*/'
"worker_connections
${
NGINX_WORKER_CONNECTIONS
}
;"
'/'
-i
${
NGINX_CONFIG_PATH
}
...
...
@@ -127,19 +135,13 @@ start_nginx(){
else
cp
${
SYSCONF_TEMPLATES_DIR
}
/nginx/onlyoffice-documentserver.conf
${
NGINX_ONLYOFFICE_PATH
}
fi
#start service
service nginx start
}
start
_supervisor
(){
update
_supervisor
_settings
(){
# Copy modified supervisor start script
cp
${
SYSCONF_TEMPLATES_DIR
}
/supervisor/supervisor /etc/init.d/
# Copy modified supervisor config
cp
${
SYSCONF_TEMPLATES_DIR
}
/supervisor/supervisord.conf /etc/supervisor/supervisord.conf
#start service
service supervisor start
}
# create base folders
...
...
@@ -149,39 +151,58 @@ done
mkdir
-p
${
LOG_DIR
}
-example
if
[
${
ONLYOFFICE_DATA_CONTAINER_HOST
}
=
"localhost"
]
;
then
read_setting
# update settings by env variables
if
[
${
MYSQL_SERVER_HOST
}
!=
"localhost"
]
;
then
update_mysql_settings
waiting_for_mysql
create_mysql_db
else
if
[
${
ONLYOFFICE_DATA_CONTAINER
}
!=
"true"
]
;
then
service mysql start
fi
LOCAL_SERVICES+
=(
"mysql"
)
fi
if
[
${
RABBITMQ_SERVER_HOST
}
!=
"localhost"
]
;
then
update_rabbitmq_setting
else
if
[
${
ONLYOFFICE_DATA_CONTAINER
}
!=
"true"
]
;
then
service redis-server start
fi
LOCAL_SERVICES+
=(
"redis-server"
)
fi
if
[
${
REDIS_SERVER_HOST
}
!=
"localhost"
]
;
then
update_redis_settings
else
if
[
${
ONLYOFFICE_DATA_CONTAINER
}
!=
"true"
]
;
then
service rabbitmq-server start
LOCAL_SERVICES+
=(
"rabbitmq-server"
)
fi
else
# no need to update settings just wait for remote data
waiting_for_datacontainer
# read settings after the data container in ready state
# to prevent get unconfigureted data
read_setting
fi
#start needed local services
for
i
in
${
LOCAL_SERVICES
[@]
}
;
do
service
$i
start
done
if
[
${
ONLYOFFICE_DATA_CONTAINER
}
!=
"true"
]
;
then
waiting_for_mysql
waiting_for_rabbitmq
waiting_for_redis
start_nginx
start_supervisor
update_nginx_settings
update_supervisor_settings
service supervisor start
fi
# nginx used as a proxy, and as data container status service.
# it run in all cases.
service nginx start
# Regenerate the fonts list and the fonts thumbnails
documentserver-generate-allfonts.sh
${
ONLYOFFICE_DATA_CONTAINER
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment