Install CloudFrost Dev
Web Server
You will need to setup a web server using Nginx or Apache if you don't already have one.
Setup Web ServerDocker Compose
You can launch CloudFrost Dev website using either of these configs below. Choose without database if you already have a mongodb database container.
Install CloudFrost Dev Website
Setup a web server using Nginx or Apache.
Download or use the nginx/apache config from that page.
Edit the config file with your domain
server_name dev.example.comand your ssl certificatessl_certificateandssl_certificate_keyIf you use Cloudflare you can use the Origin certificate for this.Go to
/etc/nginxfolder and upload thecloudfrost.confconfig file to yoursites-enabledfolder. /etc/apache2 if you use ApacheReload nginx using
sudo service nginx reloadOpen a terminal for the server.
Create a folder for the compose config
mkdir cloudfrost_devNavigate to the folder using
cd cloudfrost_devUpload the docker compose file to your server in the
cloudfrost_dev folderand the file asdocker-compose.ymlRun
docker compose up -dto start the website.You should see
Container cloudfrost-dev Startedthis confirms that it's working.Open up your browser and visit your
dev.example.comdomain.
Update CloudFrost Dev Website
You can easily update the website with a small package which will show up in the info menu if available.

Open up a terminal and navigate to the folder that has docker-compose.yml
using cd cloudfrost_devRun docker
compose downto stop the website.Run docker
compose pullto get the latest version.Run docker
compose up -dto start the website again.
Admin Setup
You will need to setup your instance of CloudFrost Dev with certain information and also create an administrator account for your instance.

Last updated