mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-03-14 04:58:26 +03:00
30 lines
637 B
YAML
30 lines
637 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
|
|
env_file:
|
|
- .env.docker-compose
|
|
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:
|