Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

Deployment

This directory contains Docker Compose configuration to deploy everything on a single VPS.

If the only updates are the image versions, then watchtower will take care of updating. Otherwise, first sync the deployment:

scp -r . user@server:/opt/course-hub/

then restart docker containers using SSH:

ssh user@server
cd /opt/course-hub
docker compose down
docker compose up -d

Operations

SSH into the server:

ssh user@server
cd /opt/course-hub

Docker status:

docker stats

Checking logs:

docker compose logs -f <container-name>