Files
outline/docker-compose.yml
Lennart Lösche 0ae559f7bf Update redis port in sample env file (#3596)
* fix redis port

The wrong Redis port is specified in the sample file, we fixed that

* adjust redis port in docker-compose
2022-05-30 10:06:10 -07:00

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:5532: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