This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/docker-compose.yml

37 lines
618 B
YAML
Raw Permalink Normal View History

2017-12-05 18:42:52 +00:00
version: "3"
services:
redis:
image: redis
ports:
- "6479:6379"
2017-12-05 18:42:52 +00:00
postgres:
image: postgres
ports:
- "5532:5432"
2017-12-05 18:42:52 +00:00
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
POSTGRES_DB: outline
s3:
image: lphoward/fake-s3
ports:
- "4569:4569"
2017-12-11 06:58:52 +00:00
volumes:
- ./fakes3:/fakes3_root
2017-12-05 18:42:52 +00:00
outline:
image: outline:v001
command: yarn dev
build:
context: .
dockerfile: Dockerfile
args:
pull: 1
ports:
- "3000:3000"
volumes:
2019-05-20 00:49:51 +00:00
- .:/opt/outline
2017-12-05 18:42:52 +00:00
depends_on:
- postgres
- redis
- s3