forked from opencomputeproject/CADCloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start_container
executable file
·90 lines (80 loc) · 3.04 KB
/
start_container
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# MIT License
#
# Copyright (c) 2020 CADCloud
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
snap install --channel=latest/beta freecad
Xvfb :5 -screen 0 1920x1080x24 -ac -nolisten tcp -nolisten unix -fbdir /tmp &
export DISPLAY=:5
export TLS_KEY_PATH=/app/certificat.key.unlock
export TLS_CERT_PATH=/app/certificat.crt
export STATIC_ASSETS_DIR=/app/src/static/
export TEMPLATES_DIR=/app/src/templates/
export CREDENTIALS_TCPPORT=:9100
export CREDENTIALS_URI=127.0.0.1
export STORAGE_TCPPORT=:9200
export MINIO_TCPPORT=:9300
export FREECAD_URI=127.0.0.1
export FREECAD_TCPPORT=:9210
export FREECAD_BINARY=/snap/bin/freecad
export FREECAD_TEMPLATE=/app/freecad/
export FREECAD_TEMP=/root/freecad/
export PROJECT_URI=127.0.0.1
export PROJECT_TCPPORT=:9211
export PROJECT_MINIO_TCPPORT=:9212
export PROJECT_TEMP=/app/root/projects/
\mkdir $PROJECT_TEMP
\mkdir $FREECAD_TEMP
export DNS_DOMAIN=""
# PORT 9400 - 9499 are reserved for local minIO server
export STORAGE_URI=127.0.0.1
export STORAGE_ROOT=/app/root
\mkdir $STORAGE_ROOT/html
cd /app/src
\cp static/playerxeogl.html $STORAGE_ROOT/html
ls -lta $STORAGE_ROOT/html
export MINIO_ROOT=$HOME/dev/minio
export MINIO_URI=127.0.0.1
export CACHE_URI=127.0.0.1
export CACHE_TCPPORT=:9500
export TZ=GMT
echo "Please set the following environement variables in PRODUCTION mode
export SMTP_SERVER=
export SMTP_ACCOUNT=
export SMTP_PASSWORD=
export CERT_STORAGE=
VALIDATE THE MINIO_ROOT VARIABLE IN THAT SCRIPT WHICH MUST POINT TO THE STORAGE SUBSYSTEM"
cd /app/bin
DIR="/app/bin/"
if [ ! -f "$DIR/minio" ]; then
wget https://dl.min.io/server/minio/release/linux-amd64/minio
chmod 755 minio
fi
export PATH=$PATH:/app/bin
./storage > ../src/logs/storage.log &
./freecad > ../src/logs/freecad.log &
./cacheServer > ../src/logs/cacheServer.log &
./minioServer > ../src/logs/minioServer.log &
sleep 5
\mkdir ../src/logs/minIO
./users > ../src/logs/users.log &
./projects > ../src/logs/projects.log &
# Only on linux we must allow the daemon to attach to port 443 and 80
# setcap cap_net_bind_service=+ep ./master
./master > ../src/logs/master.log