mirror of
https://github.com/outline/outline.git
synced 2025-12-21 10:39:41 -06:00
23 lines
435 B
YAML
23 lines
435 B
YAML
version: "3"
|
|
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"
|
|
s3:
|
|
image: lphoward/fake-s3
|
|
ports:
|
|
- "127.0.0.1:4569:4569"
|
|
volumes:
|
|
- ./fakes3:/fakes3_root
|