Semaphore/deployment/compose
2024-09-26 17:52:31 +05:00
..
dredd ci: rename dredd config files 2024-05-03 22:21:21 +02:00
runner feat(be): api/runners -> internal/runners 2024-09-26 17:52:31 +05:00
server fix: use right path to build server image 2024-04-28 01:37:04 +02:00
store ci: rename dredd config files 2024-05-03 22:21:21 +02:00
README.md docs: add all snippets for docker-compose deployments 2024-04-28 00:10:27 +02:00

Compose

With the docker-compose snippets within this directory you are able to plug different setups of Semaphore UI together. Below you can find some example combinations.

Some of the snippets define environment variables which could be optionally overwritten if needed.

Server

First of all we need the server definition and we need to decide if we want to build the image dynamically or if we just want to use a released image.

Build

This simply takes the currently cloned source and builds a new image including all local changes.

docker-compose -f deployment/compose/server/base.yml -f deployment/compose/server/build.yml up

Image

This simply downloads the defined image from DockerHub and starts/configures it properly based on the integrated bootstrapping scripts.

docker-compose -f deployment/compose/server/base.yml -f deployment/compose/server/image.yml up

Config

If you want to provide a custom config.json file to add options which are not exposed as environment variables you could add this snippet which sources the file from the current working directory.

docker-compose <server from above> -f deployment/compose/server/config.yml up

Runner

If you want to try the remote runner functionality of Semaphore you could just add this snippet to get a runner up and connected to semaphore. Similar to the examples above for the server you got different options like building the runner from the source or using our prebuilt images.

Build

This simply takes the currently cloned source and builds a new image including all local changes.

docker-compose <server from above> -f deployment/compose/runner/base.yml -f deployment/compose/runner/build.yml up

Image

This simply downloads the defined image from DockerHub and starts/configures it properly based on the integrated bootstrapping scripts.

docker-compose <server from above> -f deployment/compose/runner/base.yml -f deployment/compose/runner/image.yml up

Config

If you want to provide a custom config.json file to add options which are not exposed as environment variables you could add this snippet which sources the file from the current working directory.

docker-compose <runner from above> -f deployment/compose/runner/config.yml up

Database

After deciding the base of it you should choose one of the supported databases. Here we got currently the following options so far.

SQLite

This simply configures a named volume for the SQLite storage used as a database backend.

docker-compose <server/runner from above> -f deployment/compose/store/sqlite.yml up

BoltDB

This simply configures a named volume for the BoltDB storage used as a database backend.

docker-compose <server/runner from above> -f deployment/compose/store/boltdb.yml up

MariaDB

This simply starts an additional container for a MariaDB instance used as a database backend including the required credentials.

docker-compose <server/runner from above> -f deployment/compose/store/mariadb.yml up

MySQL

This simply starts an additional container for a MySQL instance used as a database backend including the required credentials.

docker-compose <server/runner from above> -f deployment/compose/store/mysql.yml up

PostgreSQL

This simply starts an additional container for a PostgreSQL instance used as a database backend including the required credentials.

docker-compose <server/runner from above> -f deployment/compose/store/postgres.yml up

Cleanup

After playing with the setup you are able to stop the whole setup by just replacing up at the end of the command with down.