Skip to content

Initializing VM for Codey deployment

Marcus Chan edited this page Jan 29, 2023 · 2 revisions

This page of the wiki documents how to initialize the VM for Codey deployment (manually).

  1. Follow the CSC Cloud guidelines to initialize the VM. Make sure you are under the "Codey" project before creating the VM.

  2. Connect to the VM.

  3. Install and configure Docker by doing the following steps:

sudo snap install docker
sudo groupadd docker
sudo usermod -aG docker ${USER}
sudo chmod 666 /var/run/docker.sock
  1. Install Node by following the corresponding instructions here: https://github.com/nodesource/distributions/blob/master/README.md#debinstall. Ensure Node is installed by running node -v.

  2. Install yarn by running:

sudo npm install -g corepack
corepack enable
corepack prepare yarn@stable --activate

Run yarn -v to check it is installed.

  1. If this is for staging, run export TAG={the github sha of the latest commit}. If this is for production, run export TAG={release version}.

  2. Make a folder to put the project in and cd to it.

  3. In the folder, run the following:

curl -o docker-compose.yml https://raw.githubusercontent.com/uwcsc/codeybot/main/docker/${{env.DEPLOYMENT_TARGET}}/docker-compose.yml
docker pull uwcsclub/codey-bot:$TAG // deployment target is staging or production
echo TAG=$TAG > .env
docker-compose down
docker-compose up -d
Clone this wiki locally