mentorenwahl/docs/src/installation.md
Dominic Grimm 92a2f35998
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Updated docs
2022-02-17 18:27:19 +01:00

1 KiB

Installation

Prerequisites

To install the docker-compose app, you will need to have the following dependencies installed:

Clone the repository

For building the containers from scratch, the repository's packages are required.

git clone https://git.dergrimm.net/mentorenwahl/mentorenwahl.git
cd mentorenwahl/

After that you will need to create an environment configuration file.

cp .example.env .env

Build the containers

Building the project is as simple as invoking the make command according to following options:

# Production build
make prod

# Development build
make dev

Run the containers

Running the containers is done with docker-compose:

# TTY attached
docker-compose up

# TTY detached
docker-compose up -d