33 lines
816 B
YAML
33 lines
816 B
YAML
# SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
version: "3.9"
|
|
|
|
services:
|
|
mcaptcha:
|
|
image: mcaptcha/mcaptcha:latest
|
|
ports:
|
|
- 7000:7000
|
|
environment:
|
|
DATABASE_URL: postgres://postgres:password@mcaptcha_postgres:5432/postgres # set password at placeholder
|
|
MCAPTCHA_redis_URL: "redis://mcaptcha_redis/"
|
|
RUST_LOG: "debug"
|
|
PORT: 7000
|
|
depends_on:
|
|
- mcaptcha_postgres
|
|
- mcaptcha_redis
|
|
|
|
mcaptcha_postgres:
|
|
image: postgres:13.2
|
|
volumes:
|
|
- mcaptcha-data:/var/lib/postgresql/
|
|
environment:
|
|
POSTGRES_PASSWORD: password # change password
|
|
PGDATA: /var/lib/postgresql/data/mcaptcha/
|
|
|
|
mcaptcha_redis:
|
|
image: mcaptcha/cache:latest
|
|
|
|
volumes:
|
|
mcaptcha-data:
|