Skip to content

A configuration that uses docker-compose to deploy docassemble container, maintain and manage it

License

Notifications You must be signed in to change notification settings

rvnovaes/deploy-docassemble

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

deploy-docassemble

A set of docker-compose template setups for deploying docassemble. Each template configuration is held in a separate directory. Choose the one most relevant for your use case.

Why use docker-compose?

The base documentation for docassemble outlines how to deploy using a docker container. These instructions include using docker run on the container to deploy the application. This is great for testing and fine for deployment too.

However, we prefer to use docker-compose for production deployments. There are a couple of advantages to this approach:

  • The docassemble run settings are contained in the docker-compose.yml file and the .env file. These can be easily maintained and managed using a git repo.
  • For more complex setups, other containers can be orchestrated alongside the docassemble container using docker-compose For example, adding an additional nginx proxy to enable multiple web apps to run concurrently on the same machine.

If you like the simple docker run then stick with it.

But if you prefer docker-compose then this repo may be a helpful timesaver.

Getting started

  1. Select the template setup that best suits your use case. Each folder is a separate setup. See the README.md file in each folder for more information.

  2. Tweak the .env and the docker-compose.yml files to your requirements.

  3. Spin up docassemble in the background using:

    docker-compose up -d
    
  4. Note that docassemble deployment is very slow for the first deployment. It can take up to 10 minutes before the app is up and running. Be patient and make a cup of tea.

  5. If you need to debug your deployment, try running docker-compose up without the -d option in order to see the console output. Or alternatively, hop onto the container as per the docassemble documentation and look at the logs.

  6. To bring down the containers cleanly and stop your app, use:

    docker-compose down
    

Configuration templates

Each template configuration is held in a separate sub-directory.

  • Development setup - this spins up a simple development server version of docassemble in the same way as outlined in the documentation, but using docker-compose.

  • Simple production setup - this creates a single server deployment setup, using LetsEncrypt for SSL. By default it stores the backup and configuration data in a persistent volume on the server itself. It also contains instructions on how to easily attach to S3 or Azure Blob storage.

  • DigitalOcean setup - this creates a single server deployment setup on DigitalOcean using LetsEncrypt for SSL. It also uses a DigitalOcean Spaces 'bucket' for S3 storage to persist the backup and configuration.

Contributing

Pull requests are welcomed for improvements to configurations, documentation or bug fixes.

If this repo is useful, we are also happy to receive other useful template configurations. Please follow the same structure for each setup if possible to keep things neat and easy to understand.

Links

Check out the official documentation for this fantastic package:

Questions

For questions on docassemble please direct those to the main docassemble community. In particular there is a great Slack community providing support and answering questions.

About

A configuration that uses docker-compose to deploy docassemble container, maintain and manage it

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published