642c11ff7d
* WIP: Archive * WIP * Finishing up archive endpoints * WIP * Update docs * Flow * Stash * Add toast message confirmations * Redirect handling, fixed publishhing info for archived docs * Redirect to collection instead of home, remove unused pub info * Account for deleted parent * Trash -> Archive Allow reading of archived docs * Dont overload deletedAt * Fixes * 💚 * ParentDocumentId wipe for unarchived sub docs * Fix: CMD+S exits editing Fix: Duplicate user name on published but unedited docs * Improve jank on paginated lists * Prevent editing when archived * 💚 Separate lint / flow steps
37 lines
625 B
YAML
37 lines
625 B
YAML
version: "3"
|
|
services:
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- "6380:6379"
|
|
postgres:
|
|
image: postgres
|
|
ports:
|
|
- "5434:5432"
|
|
environment:
|
|
POSTGRES_USER: user
|
|
POSTGRES_PASSWORD: pass
|
|
POSTGRES_DB: outline
|
|
s3:
|
|
image: lphoward/fake-s3
|
|
ports:
|
|
- "4569:4569"
|
|
volumes:
|
|
- ./fakes3:/fakes3_root
|
|
outline:
|
|
image: outline:v001
|
|
command: yarn dev
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
pull: 1
|
|
ports:
|
|
- "3000:3000"
|
|
volumes:
|
|
- .:/opt/outline:cached
|
|
depends_on:
|
|
- postgres
|
|
- redis
|
|
- s3
|