-
Notifications
You must be signed in to change notification settings - Fork 18
Initializing VM for Codey deployment
This page of the wiki documents how to initialize the VM for Codey deployment (manually).
-
Follow the CSC Cloud guidelines to initialize the VM. Make sure you are under the "Codey" project before creating the VM.
-
Connect to the VM.
-
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
-
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
. -
Install yarn by running:
sudo npm install -g corepack
corepack enable
corepack prepare yarn@stable --activate
Run yarn -v
to check it is installed.
-
If this is for staging, run
export TAG={the github sha of the latest commit}
. If this is for production, runexport TAG={release version}
. -
Make a folder to put the project in and
cd
to it. -
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