mirror of
https://example.com
synced 2024-11-22 23:46:38 +09:00
16 lines
314 B
YAML
16 lines
314 B
YAML
version: "3"
|
|
|
|
services:
|
|
redis:
|
|
image: docker.io/redis:7-alpine
|
|
ports:
|
|
- "6379:6379"
|
|
|
|
db:
|
|
image: docker.io/groonga/pgroonga:latest-alpine-16
|
|
environment:
|
|
- "POSTGRES_PASSWORD=password"
|
|
- "POSTGRES_USER=firefish"
|
|
- "POSTGRES_DB=firefish_db"
|
|
ports:
|
|
- "5432:5432"
|