7d32cac40a
* Refactoring stable images release versioning The new principle of stable docker images versioning: release numbering is now not by build number, but by serial number. * Refactoring: fix non-example image pull tag
25 lines
834 B
Docker
25 lines
834 B
Docker
### Arguments avavlivable only for FROM instruction ###
|
|
ARG PULL_TAG=latest
|
|
ARG COMPANY_NAME=onlyoffice
|
|
ARG PRODUCT_EDITION=
|
|
|
|
### Build main-release ###
|
|
|
|
FROM ${COMPANY_NAME}/4testing-documentserver${PRODUCT_EDITION}:${PULL_TAG} as documentserver-stable
|
|
|
|
### Build nonexample ###
|
|
|
|
FROM ${COMPANY_NAME}/documentserver${PRODUCT_EDITION}:${PULL_TAG} as documentserver-nonexample
|
|
|
|
ARG COMPANY_NAME=onlyoffice
|
|
ARG PRODUCT_NAME=documentserver
|
|
ARG DS_SUPERVISOR_CONF=/etc/supervisor/conf.d/ds.conf
|
|
|
|
### Remove all documentserver-example data ###
|
|
|
|
RUN rm -rf /var/www/$COMPANY_NAME/$PRODUCT_NAME-example \
|
|
&& rm -rf /etc/$COMPANY_NAME/$PRODUCT_NAME-example \
|
|
&& rm -f $DS_SUPERVISOR_CONF \
|
|
&& rm -f /etc/nginx/includes/ds-example.conf \
|
|
&& ln -s /etc/$COMPANY_NAME/$PRODUCT_NAME/supervisor/ds.conf $DS_SUPERVISOR_CONF
|