Files
Paymenter-Version-Tracks/docker-compose.example.yml
Muhammad Tamir 85c03cef82 v1.3.4
2025-11-14 10:57:49 +07:00

55 lines
1.4 KiB
YAML

x-common:
database:
&db-environment
# Do not remove the "&db-password" from the end of the line below, it is important
# for Paymenter functionality.
MYSQL_PASSWORD: &db-password "CHANGE_ME"
MYSQL_ROOT_PASSWORD: "CHANGE_ME_TOO"
#
# ------------------------------------------------------------------------------------------
# DANGER ZONE BELOW
#
# The remainder of this file likely does not need to be changed. Please only make modifications
# below if you understand what you are doing.
#
services:
database:
image: mariadb:lts
restart: always
command: --default-authentication-plugin=mysql_native_password
volumes:
- "./database:/var/lib/mysql"
environment:
<<: *db-environment
MYSQL_DATABASE: "paymenter"
MYSQL_USER: "paymenter"
cache:
image: redis:alpine
restart: always
paymenter:
image: ghcr.io/paymenter/paymenter:latest
restart: always
ports:
- "80:80"
links:
- database
- cache
volumes:
- "./:/app/var/"
- "./storage/logs:/app/storage/logs"
- "./storage/public:/app/storage/app/public"
environment:
DB_PASSWORD: *db-password
APP_ENV: "production"
CACHE_STORE: "redis"
REDIS_HOST: "cache"
DB_CONNECTION: "mariadb"
DB_HOST: "database"
DB_PORT: "3306"
networks:
default:
ipam:
config:
- subnet: 172.23.0.0/16