build-configs/templates/env.example.twig
2023-03-12 12:33:33 +00:00

21 lines
443 B
Twig

# {{ managedText | raw }}
export DOCKER_UID=1000
{% if dockerCompose %}
export COMPOSE_PROJECT_NAME={{ name }}
{% if "php" == language %}
export COMPOSE_PROFILES=web,php,database
{% elseif "node" == language %}
export COMPOSE_PROFILES=node
{% endif %}
export DOCKER_WEB_VOLUME=.:{{ project_root }}
{% endif %}
{% if "drupal-project" == type %}
export MYSQL_DATABASE=drupal
export MYSQL_PASSWORD=drupal
export MYSQL_USER=drupal
{% endif %}