1
0
Fork 1
mirror of https://example.com synced 2024-11-23 01:36:38 +09:00
firefish/dev/docker-compose.yml

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"