### Basic Docker Compose Deployment Source: https://github.com/devinsolutions/docker-taiga/blob/master/README.md A basic deployment example using docker-compose.yml is available. ```yaml # Basic deployment example using docker-compose.yml ``` -------------------------------- ### Advanced Docker Compose Deployment Source: https://github.com/devinsolutions/docker-taiga/blob/master/README.md An advanced deployment example using docker-compose.advanced.yml is available. ```yaml # Advanced deployment example using docker-compose.advanced.yml ``` -------------------------------- ### Configure taiga-front Settings Source: https://github.com/devinsolutions/docker-taiga/blob/master/README.md Information on configuring taiga-front using the conf.json file. An example configuration is available on GitHub. ```json // Configuration for taiga-front // Located at /etc/opt/taiga-front/conf.json // See conf.example.json for default configuration. ``` -------------------------------- ### Populate Database with Initial Data Source: https://github.com/devinsolutions/docker-taiga/blob/master/README.md Instructions on populating the database with initial data using the 'populate-db' command. This command overwrites existing data and is not run by default. ```bash # Command to populate the database with initial data: # populate-db # WARNING: This command overwrites existing data and is not run by default. ``` -------------------------------- ### Configure taiga-back Settings Source: https://github.com/devinsolutions/docker-taiga/blob/master/README.md Details on configuring taiga-back using the settings.py file. Refer to the default configuration in the repository for all available settings. ```python # Configuration for taiga-back # Located at /etc/opt/taiga-back/settings.py # See root/etc/opt/taiga-back/settings.py for default configuration. ``` -------------------------------- ### Configure uWSGI with Environment Variables Source: https://github.com/devinsolutions/docker-taiga/blob/master/README.md Explains how to configure uWSGI using the uwsgi.ini file and environment variables. Environment variables can override settings in the ini file. ```bash # Configuration for uWSGI # Can be configured via /usr/local/etc/uwsgi/uwsgi.ini and/or environment variables. # Environment variables are the easiest way to extend default configuration. ``` -------------------------------- ### Taiga-back Persistence Source: https://github.com/devinsolutions/docker-taiga/blob/master/README.md Details on how taiga-back persists data, specifically attachments, in the /srv/taiga-back/media directory. This directory is not a volume by default. ```bash # Taiga-back data persistence: # Attachments are persisted in /srv/taiga-back/media # NOTE: This directory is not a volume by default. ``` -------------------------------- ### Robots.txt Configuration Source: https://github.com/devinsolutions/docker-taiga/blob/master/root/opt/taiga-front/robots.txt Specifies crawling rules for web robots. This configuration disallows access to the /admin path for all user agents. ```robots.txt User-agent: * Disallow: /admin ``` -------------------------------- ### uWSGI Graceful Shutdown Source: https://github.com/devinsolutions/docker-taiga/blob/master/README.md Describes the shutdown behavior of uWSGI. It is configured to shut down gracefully on SIGHUP and forcefully on SIGTERM. ```bash # uWSGI shutdown behavior: # Graceful shutdown on SIGHUP # Forceful shutdown on SIGTERM ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.