TelegramApiServer/docker-compose.base.yml
2024-04-19 01:14:22 +02:00

37 lines
928 B
YAML

services:
base-api:
image: xtrime/telegram-api-server:latest
init: true
build:
context: .
dockerfile: Dockerfile
restart: unless-stopped
volumes:
- ./:/app-host-link
working_dir: /app-host-link
depends_on:
- mysql
environment:
WAIT_HOSTS: mysql:3306
logging:
driver: "json-file"
options:
max-size: "1024k"
max-file: "2"
healthcheck:
test: timeout 15 curl -f http://localhost:9503/system/healthcheck || bash -c 'kill -INT -1 && (sleep 5; kill -s 9 -1)'
interval: 60s
timeout: 30s
retries: 1
base-mysql:
image: mariadb:11.1
restart: unless-stopped
volumes:
- ./.mysql:/var/lib/mysql
environment:
MARIADB_ALLOW_EMPTY_ROOT_PASSWORD: 'yes'
MARIADB_AUTO_UPGRADE: 'yes'
command:
- --skip-grant-tables
- --innodb-buffer-pool-size=128M
- --wait_timeout=65