weblate/ci/docker-compose-mysql.yml
Michal Čihař d4e8e7232b feat(ci): introduce dclint and apply fixes to docker compose files
This also includes the snippet used in the documentation.
2025-06-13 10:42:51 +02:00

16 lines
454 B
YAML

# Copyright © Michal Čihař <michal@weblate.org>
#
# SPDX-License-Identifier: GPL-3.0-or-later
services:
cache:
image: redis:8.0.2-alpine@sha256:48501c5ad00d5563bc30c075c7bcef41d7d98de3e9a1e6c752068c66f0a8463b
ports:
- 60001:6379
restart: always
database:
image: mysql:9.3.0@sha256:072f96c2f1ebb13f712fd88d0ef98f2ef9a52ad4163ae67b550ed6720b6d642e
environment:
MYSQL_ROOT_PASSWORD: weblate
ports:
- 60000:3306