1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-22 06:14:16 +00:00

Updated Docker Installation & Update (textile)

catborise 2020-06-29 09:40:22 +03:00
parent 10a90ad0d9
commit cca4927bac

@ -12,13 +12,8 @@ yum install git python</code></pre>
<pre><code>cd webvirtcloud/</code></pre> <pre><code>cd webvirtcloud/</code></pre>
# Copy the setting.py file # Copy the setting.py file
<pre><code>cp webvirtcloud/settings.py.template webvirtcloud/settings.py</code></pre> <pre><code>cp webvirtcloud/settings.py.template webvirtcloud/settings.py</code></pre>
# Generate random number using Python. *Copy and paste the entire command*: # Generate random number using Python script:
<pre><code>echo "import random, string" > /tmp/key.py && \ <pre><code>python3 conf/runit/secret_generator.py</code></pre>
echo "haystack = string.ascii_letters + string.digits + string.punctuation" >> /tmp/key.py && \
echo "print(''.join([random.SystemRandom().choice(haystack) for _ in range(50)]))" >> /tmp/key.py && \
python /tmp/key.py && \
rm /tmp/key.py
</code></pre>
# Copy 'generated code' and paste it to webvirtcloud/settings.py as SECRET_KEY = '' # Copy 'generated code' and paste it to webvirtcloud/settings.py as SECRET_KEY = ''
# Build the docker container # Build the docker container
<pre><code>docker build -t retspen/webvirtcloud:1 .</code></pre> <pre><code>docker build -t retspen/webvirtcloud:1 .</code></pre>
@ -31,6 +26,15 @@ rm /tmp/key.py
# Change your admin password # Change your admin password
# Add new host # Add new host
***
*Reverse Proxy*
# Edit WS_PUBLIC_PORT in settings.py which is default value 6080
<pre><code>##Websock public port - 80 or 443 if reverse-proxy, else 6080
WS_PUBLIC_PORT = 80
</code></pre>
# Run webvirtcloud container with that command:
<pre><code>docker run -d -p 80:80 retspen/webvirtcloud:1</code></pre>
*** ***
*Additional Information:* *Additional Information:*