mirror of
https://github.com/outline/outline.git
synced 2025-03-14 10:07:11 +00:00
16 lines
304 B
YAML
16 lines
304 B
YAML
services:
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- "127.0.0.1:6379:6379"
|
|
user: "redis:redis"
|
|
postgres:
|
|
image: postgres
|
|
ports:
|
|
- "127.0.0.1:5432:5432"
|
|
environment:
|
|
POSTGRES_USER: user
|
|
POSTGRES_PASSWORD: pass
|
|
POSTGRES_DB: outline
|
|
user: "postgres:postgres"
|