mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-26 10:52:09 +08:00
22 lines
522 B
YAML
22 lines
522 B
YAML
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
version: '3'
|
|
|
|
services:
|
|
database:
|
|
image: postgres:15.4
|
|
ports:
|
|
- 60000:5432
|
|
volumes:
|
|
# make postgres faster and non-durable, see https://www.postgresql.org/docs/current/non-durability.html
|
|
- ./postgres:/docker-entrypoint-initdb.d
|
|
environment:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: weblate
|
|
cache:
|
|
image: redis:7.2.1-alpine
|
|
restart: always
|
|
ports:
|
|
- 60001:6379
|