mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-26 07:05:52 -05:00
fix more occurrences of meshcentral-backup typos and minor markdown lint fixes
This commit is contained in:
parent
964fc9fd00
commit
37e602e689
@ -10,11 +10,11 @@ ARG DISABLE_TRANSLATE=""
|
|||||||
|
|
||||||
RUN if ! [ -z "$DISABLE_MINIFY" ] && [ "$DISABLE_MINIFY" != "yes" ] && [ "$DISABLE_MINIFY" != "YES" ] \
|
RUN if ! [ -z "$DISABLE_MINIFY" ] && [ "$DISABLE_MINIFY" != "yes" ] && [ "$DISABLE_MINIFY" != "YES" ] \
|
||||||
&& [ "$DISABLE_MINIFY" != "true" ] && [ "$DISABLE_MINIFY" != "TRUE" ]; then \
|
&& [ "$DISABLE_MINIFY" != "true" ] && [ "$DISABLE_MINIFY" != "TRUE" ]; then \
|
||||||
echo -e "\e[0;31;49mInvalid value for build argument DISABLE_MINIFY, possible values: yes/true\e[;0m"; exit 1; \
|
echo -e "\e[0;31;49mInvalid value for build argument DISABLE_MINIFY, possible values: yes/true\e[;0m"; exit 1; \
|
||||||
fi
|
fi
|
||||||
RUN if ! [ -z "$DISABLE_TRANSLATE" ] && [ "$DISABLE_TRANSLATE" != "yes" ] && [ "$DISABLE_TRANSLATE" != "YES" ] \
|
RUN if ! [ -z "$DISABLE_TRANSLATE" ] && [ "$DISABLE_TRANSLATE" != "yes" ] && [ "$DISABLE_TRANSLATE" != "YES" ] \
|
||||||
&& [ "$DISABLE_TRANSLATE" != "true" ] && [ "$DISABLE_TRANSLATE" != "TRUE" ]; then \
|
&& [ "$DISABLE_TRANSLATE" != "true" ] && [ "$DISABLE_TRANSLATE" != "TRUE" ]; then \
|
||||||
echo -e "\e[0;31;49mInvalid value for build argument DISABLE_TRANSLATE, possible values: yes/true\e[;0m"; exit 1; \
|
echo -e "\e[0;31;49mInvalid value for build argument DISABLE_TRANSLATE, possible values: yes/true\e[;0m"; exit 1; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# install translate/minify modules if need too
|
# install translate/minify modules if need too
|
||||||
@ -71,7 +71,7 @@ ENV REVERSE_PROXY_TLS_PORT=""
|
|||||||
|
|
||||||
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ] && [ "$INCLUDE_MONGODBTOOLS" != "yes" ] && [ "$INCLUDE_MONGODBTOOLS" != "YES" ] \
|
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ] && [ "$INCLUDE_MONGODBTOOLS" != "yes" ] && [ "$INCLUDE_MONGODBTOOLS" != "YES" ] \
|
||||||
&& [ "$INCLUDE_MONGODBTOOLS" != "true" ] && [ "$INCLUDE_MONGODBTOOLS" != "TRUE" ]; then \
|
&& [ "$INCLUDE_MONGODBTOOLS" != "true" ] && [ "$INCLUDE_MONGODBTOOLS" != "TRUE" ]; then \
|
||||||
echo -e "\e[0;31;49mInvalid value for build argument INCLUDE_MONGODBTOOLS, possible values: yes/true\e[;0m"; exit 1; \
|
echo -e "\e[0;31;49mInvalid value for build argument INCLUDE_MONGODBTOOLS, possible values: yes/true\e[;0m"; exit 1; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ]; then apk add --no-cache mongodb-tools; fi
|
RUN if ! [ -z "$INCLUDE_MONGODBTOOLS" ]; then apk add --no-cache mongodb-tools; fi
|
||||||
@ -93,6 +93,6 @@ EXPOSE 80 443 4433
|
|||||||
VOLUME /opt/meshcentral/meshcentral-data
|
VOLUME /opt/meshcentral/meshcentral-data
|
||||||
VOLUME /opt/meshcentral/meshcentral-files
|
VOLUME /opt/meshcentral/meshcentral-files
|
||||||
VOLUME /opt/meshcentral/meshcentral-web
|
VOLUME /opt/meshcentral/meshcentral-web
|
||||||
VOLUME /opt/meshcentral/meshcentral-backup
|
VOLUME /opt/meshcentral/meshcentral-backups
|
||||||
|
|
||||||
CMD ["bash", "/opt/meshcentral/startup.sh"]
|
CMD ["bash", "/opt/meshcentral/startup.sh"]
|
||||||
|
@ -10,8 +10,10 @@
|
|||||||
| - docker-compose.yml
|
| - docker-compose.yml
|
||||||
```
|
```
|
||||||
|
|
||||||
# Templates:
|
# Templates
|
||||||
## .env:
|
|
||||||
|
## .env
|
||||||
|
|
||||||
```ini
|
```ini
|
||||||
NODE_ENV=production
|
NODE_ENV=production
|
||||||
|
|
||||||
@ -42,7 +44,8 @@ LOCALSESSIONRECORDING=false
|
|||||||
MINIFY=true
|
MINIFY=true
|
||||||
```
|
```
|
||||||
|
|
||||||
## docker-compose.yml:
|
## docker-compose.yml
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
@ -63,12 +66,13 @@ services:
|
|||||||
# where file uploads for users live
|
# where file uploads for users live
|
||||||
- ./meshcentral/user_files:/opt/meshcentral/meshcentral-files
|
- ./meshcentral/user_files:/opt/meshcentral/meshcentral-files
|
||||||
# location for the meshcentral-backups - this should be mounted to an external storage
|
# location for the meshcentral-backups - this should be mounted to an external storage
|
||||||
- ./meshcentral/backup:/opt/meshcentral/meshcentral-backup
|
- ./meshcentral/backup:/opt/meshcentral/meshcentral-backups
|
||||||
# location for site customization files
|
# location for site customization files
|
||||||
- ./meshcentral/web:/opt/meshcentral/meshcentral-web
|
- ./meshcentral/web:/opt/meshcentral/meshcentral-web
|
||||||
```
|
```
|
||||||
|
|
||||||
## docker-compose.yml mongodb:
|
## docker-compose.yml mongodb
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
version: '3'
|
version: '3'
|
||||||
|
|
||||||
@ -107,7 +111,7 @@ services:
|
|||||||
# where file uploads for users live
|
# where file uploads for users live
|
||||||
- ./meshcentral/user_files:/opt/meshcentral/meshcentral-files
|
- ./meshcentral/user_files:/opt/meshcentral/meshcentral-files
|
||||||
# location for the meshcentral-backups - this should be mounted to an external storage
|
# location for the meshcentral-backups - this should be mounted to an external storage
|
||||||
- ./meshcentral/backup:/opt/meshcentral/meshcentral-backup
|
- ./meshcentral/backup:/opt/meshcentral/meshcentral-backups
|
||||||
# location for site customization files
|
# location for site customization files
|
||||||
- ./meshcentral/web:/opt/meshcentral/meshcentral-web
|
- ./meshcentral/web:/opt/meshcentral/meshcentral-web
|
||||||
networks:
|
networks:
|
||||||
|
Loading…
Reference in New Issue
Block a user