mirror of
https://example.com
synced 2024-11-22 22:16:39 +09:00
18 lines
402 B
YAML
18 lines
402 B
YAML
version: "3"
|
|
|
|
services:
|
|
redis:
|
|
image: docker.io/redis:7-alpine
|
|
ports:
|
|
- "26379:6379"
|
|
|
|
db:
|
|
image: docker.io/groonga/pgroonga:latest-alpine-16
|
|
environment:
|
|
- "POSTGRES_PASSWORD=password"
|
|
- "POSTGRES_USER=firefish"
|
|
- "POSTGRES_DB=firefish_db"
|
|
ports:
|
|
- "25432:5432"
|
|
volumes:
|
|
- "../neko/install.sql:/docker-entrypoint-initdb.d/install.sql:ro"
|