Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

readme.md

outline

Architecture

Maintenance

Docs Releases

Updating

nothing special

# update version numbers in docker-compose.yml
docker-compose pull
docker-compose down
docker-compose up -d

maybe the database has to be migrated

docker-compose run --rm outline yarn db:migrate --env=production-ssl-disabled

Setup

  1. prepare an OIDC auth provider (Nextcloud with OIDC Identity Provider for example)
  2. fill out .env (everything except the S3 variables)
  3. create and migrate the postgres database
    docker-compose run --rm outline yarn db:create --env=production-ssl-disabled
    docker-compose run --rm outline yarn db:migrate --env=production-ssl-disabled
  4. start the containers
    docker-compose up -d
  5. login to the minio console/admin interface
  6. create a user with read/write permission
  7. create a bucket
  8. update the .env
  9. restart the containers
    docker-compose down
    docker-compose up -d

Links