Skip to content

pierrepo/autoclassweb-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Server deployment for AutoClassWeb

This document explains how to deploy AutoClassWeb on a web server.

Install Docker

Install Docker with the following instructions.

Install Docker Compose

Install Docker-compose with the following instructions.

Clone this repo

git clone https://github.com/pierrepo/autoclassweb-server.git

Configure AutoClassWeb

App

Update app configuration file in config/autoclassweb.cfg.

Web server

Update port in the configuration file docker-compose.yml. Replace 8000 in 8000:80 with the port number from which you want the AutoClassWeb service to be accessible.

Run web serveur

From the project folder, run the following command:

docker-compose up -d

Update images

First stop containers:

docker-compose down -v

Then, update images:

docker-compose pull

Eventually, re-run containers:

docker-compose up -d