mirror of
https://example.com
synced 2024-11-23 07:26:40 +09:00
17 lines
314 B
YAML
17 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"
|