-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (44 loc) · 1.43 KB
/
docker-compose.yml
File metadata and controls
47 lines (44 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# SPDX-FileCopyrightText: Copyright (C) 2026 Adaline Simonian
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# This file is part of Ordbok API.
#
# Ordbok API is free software: you can redistribute it and/or modify it under
# the terms of the GNU Affero General Public License as published by the Free
# Software Foundation, either version 3 of the License, or (at your option) any
# later version.
#
# Ordbok API is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
# A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
# details.
#
# You should have received a copy of the GNU Affero General Public License
# along with Ordbok API. If not, see <https://www.gnu.org/licenses/>.
name: ordbokapi-local-dev
services:
db:
image: postgres:18-alpine
environment:
POSTGRES_USER: ordbokapi
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-password}
POSTGRES_DB: ordbokapi
ports:
- '${POSTGRES_PORT:-5432}:5432'
volumes:
- ./.pgdata:/var/lib/postgresql
meilisearch:
image: getmeili/meilisearch:v1
environment:
MEILI_MASTER_KEY: ${MEILI_API_KEY:-masterkey}
MEILI_ENV: development
ports:
- '${MEILI_PORT:-7700}:7700'
volumes:
- ./.meilidata:/meili_data
valkey:
image: valkey/valkey:9
ports:
- '${REDIS_PORT:-6379}:6379'
volumes:
- ./.valkey:/data