Skip to content

Commit

Permalink
Add full Docker support (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
No767 committed Aug 8, 2024
1 parent c996be9 commit 53029ee
Show file tree
Hide file tree
Showing 13 changed files with 343 additions and 23 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Docker

on:
push:
branches: [main]

jobs:
Build-and-Push:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Prepare Docker Meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/transprogrammer/rodhaj
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=edge,branch=main
- name: Setup Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push image
uses: docker/build-push-action@v6
with:
context: .
file: ./docker/Dockerfile
push: true
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/rodhaj-build-cache:bot
cache-to: cache-to=type=registry,mode=max,ref=ghcr.io/${{ github.repository_owner }}/rodhaj-build-cache:bot
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
37 changes: 37 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,50 @@ on:
branches:
- main
jobs:
Bundle:
runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, '#major') || contains(github.event.head_commit.message, '#minor') || contains(github.event.head_commit.message, '#patch')
steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Prepare for bundling
run: |
mkdir -p rodhaj-docker
mkdir -p releases
cp docker/docker-compose.yml rodhaj-docker/
cp docker/example.env rodhaj-docker/
cp -r docker/pg/ rodhaj-docker/
- name: Bundle docker-related files
run: |
zip releases/rodhaj-docker.zip rodhaj-docker/**
tar -czf releases/rodhaj-docker.tar.gz rodhaj-docker/**
- name: Upload bundle
uses: actions/upload-artifact@v4
with:
path: releases


Release:
permissions:
contents: write
needs: Bundle

runs-on: ubuntu-latest
if: contains(github.event.head_commit.message, '#major') || contains(github.event.head_commit.message, '#minor') || contains(github.event.head_commit.message, '#patch')
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Download Artifacts
uses: actions/download-artifact@v4
with:
name: artifact
path: releases

- name: Bump version and push tag
uses: anothrNick/[email protected]
id: tag_version
Expand All @@ -27,3 +63,4 @@ jobs:
token: ${{ secrets.PAT_TOKEN }}
tag: ${{ steps.tag_version.outputs.new_tag }}
name: ${{ steps.tag_version.outputs.new_tag }}
artifacts: "releases/rodhaj-docker.zip,releases/rodhaj-docker.tar.gz"
18 changes: 0 additions & 18 deletions docker-compose-dev.yml

This file was deleted.

20 changes: 20 additions & 0 deletions docker/docker-compose.dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: rodhaj_dev

# For development purposes, it is recommended in order to start the bot normally and using the Dev Reloader system
services:
database:
container_name: rodhaj_postgres
build:
context: ./pg
dockerfile: Dockerfile
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_USER: ${DB_USERNAME}
volumes:
- database:/var/lib/postgresql/data
ports:
- 5432:5432

volumes:
database:
64 changes: 64 additions & 0 deletions docker/docker-compose.prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: rodhaj_prod

services:
rodhaj:
container_name: rodhaj
image: ghcr.io/transprogrammer/rodhaj:latest
volumes:
# Do not edit the next line. If you want to change the path of the configuration file, please edit the CONFIG_LOCATION variable
- ${CONFIG_LOCATION}:/rodhaj/bot/config.yml
env_file:
- .env
ports:
- 8555:8555
depends_on:
- database
command: sh -c '/rodhaj/wait-for database:5432 -- echo "[Wait-for] PostgreSQL is fully up. Starting Rodhaj." && /rodhaj/start.sh'
restart: always

database:
container_name: rodhaj_postgres
build:
context: ./pg
dockerfile: Dockerfile
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
ports:
- 5432:5432
volumes:
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
- database:/var/lib/postgresql/data
healthcheck:
test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
interval: 5m
start_interval: 30s
start_period: 5m
restart: always

rodhaj-prometheus:
container_name: rodhaj_prometheus
ports:
- 9090:9090
image: prom/prometheus:latest
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
- prometheus-data:/prometheus

# first login uses admin/admin
# add data source for http://rodhaj-prometheus:9090 to get started
rodhaj-grafana:
container_name: rodhaj_grafana
command: ['./run.sh', '-disable-reporting']
ports:
- 3000:3000
image: grafana/grafana-enterprise:11.1.3-ubuntu
volumes:
- grafana-data:/var/lib/grafana

volumes:
database:
prometheus-data:
grafana-data:
43 changes: 43 additions & 0 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: rodhaj

services:
rodhaj:
container_name: rodhaj
image: ghcr.io/transprogrammer/rodhaj:latest
volumes:
# Do not edit the next line. If you want to change the path of the configuration file, please edit the CONFIG_LOCATION variable
- ${CONFIG_LOCATION}:/rodhaj/bot/config.yml
env_file:
- .env
ports:
- 8555:8555
depends_on:
- database
# Oftentimes if Rodhaj started too early (aka starting without this script), then it would entirely not run the migrations and error out
command: sh -c '/rodhaj/wait-for database:5432 -- echo "[Wait-for] PostgreSQL is fully up. Starting Rodhaj." && /rodhaj/start.sh'
restart: always

database:
container_name: rodhaj_postgres
build:
context: ./pg
dockerfile: Dockerfile
environment:
POSTGRES_PASSWORD: ${DB_PASSWORD}
POSTGRES_DB: ${DB_DATABASE_NAME}
POSTGRES_USER: ${DB_USERNAME}
POSTGRES_INITDB_ARGS: '--data-checksums'
ports:
- 5432:5432
volumes:
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
- database:/var/lib/postgresql/data
healthcheck:
test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
interval: 5m
start_interval: 30s
start_period: 5m
restart: always

volumes:
database:
11 changes: 11 additions & 0 deletions docker/example.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# The location of where Rodhaj's configuration is stored.
# The configuration can be found under the config-example.yml
CONFIG_LOCATION=./config.yml

# Connection secret for the postgres. You should change it to a random password
POSTGRES_PASSWORD=postgres

# The values below this line do not need to be changed
###################################################################################
POSTGRES_USER=postgres
POSTGRES_DB=rodhaj
3 changes: 1 addition & 2 deletions docker/pg/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
set -e

psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
CREATE ROLE rodhaj WITH LOGIN PASSWORD '$RODHAJ_PASSWORD';
CREATE DATABASE rodhaj OWNER rodhaj;
CREATE EXTENSION IF NOT EXISTS pg_trgm;
EOSQL
8 changes: 8 additions & 0 deletions docker/prometheus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
global:
scrape_interval: 15s
evaluation_interval: 15s

scrape_configs:
- job_name: rodhaj
static_configs:
- targets: ['rodhaj:8555']
97 changes: 97 additions & 0 deletions docs/deployment/docker.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
======
Docker
======

.. warning::

This method of deployment is only for internal use within the transprogrammer community.
In addition, this deployment method is fairly advanced. This guide is only intended for internal
documentation for possible deployment options.

Docker Compose can be used to run an Rodhaj instance in production. This will only work if you have access to the
Rodhaj Docker images.

Step 1 - Download required files
================================

Download the necessary archive for getting started. This archive contains all
of the files needed to get started. These are provided either in ``.zip`` or ``.tar.gz``
formats.

.. code-block:: bash
wget https://github.com/transprogrammer/rodhaj/releases/latest/download/rodhaj-docker.tar.gz
# .zip version download
wget https://github.com/transprogrammer/rodhaj/releases/latest/download/rodhaj-docker.zip
We need to unpack the archive in order to access the files. The following commands should do that.

.. code-block:: bash
tar -xvzf rodhaj-docker.tar.gz
# .zip version unpacking
unzip rodhaj-docker.zip
Once we have the files, we can now ``cd`` into the new extracted archive.

.. code-block:: bash
cd rodhaj-docker
.. important::

Throughout the rest of the guide, the next steps assume that
you are in the ``rodhaj-docker`` directory.

Step 2 - Populate ``.env`` and ``config.yml`` file with values
==============================================================

- Change ``DB_PASSWORD`` to a randomly generated password.
- Provide Rodhaj's bot token in ``config.yml``
- Change ``rodhaj.guild_id`` in ``config.yml`` to the server ID that Rodhaj is running on
- Modify the PostgreSQL URI used in ``config.yml`` to redirect to the database container and appropriate password

.. note::

In order for Rodhaj to work container-wise, the IP aliases that is provided by the compose file
must be used instead. For example, the URI would look like this (of course replace the password):

.. code-block::
postgresql://postgres:somepwd@database:5432/rodhaj
.. important::

If you are running the full production version, please enable the Prometheus metrics
found in Rodhaj's configuration

Step 3 - Start all containers
=============================

Assume that you are in the directory created in Step 1, run the following command to bring up Rodhaj entirely.

.. code-block::
docker compose up -d
.. tip::

If you are having issues downloading container images, you will need to authenticate to the Github Container
Registry. Steps can be found `here <https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#authenticating-to-the-container-registry>`_.

Step 4 - Upgrading
==================

.. danger::

Although Rodhaj doesn't often update version-wise, there
may be breaking changes between versions. Be careful and be
up-to-date with changes.

Upgrading Rodhaj is very simple. All you need to do is run the following commands below:

.. code-block:: bash
docker compose pull && docker compose up -d
10 changes: 10 additions & 0 deletions docs/deployment/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
================
Deployment Guide
================

This document represents the deployment guide for Rodhaj. Currently, these are the officially supported methods as shown below.

.. toctree::
:maxdepth: 1

docker
Loading

0 comments on commit 53029ee

Please sign in to comment.