Created
December 13, 2020 13:00
-
-
Save jamescowie/8cc6f37c846a60527403ed4f700f7a3e to your computer and use it in GitHub Desktop.
PHP 8 with Warden
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3.5" | |
services: | |
php8-fpm: | |
hostname: "${WARDEN_ENV_NAME}-php-fpm" | |
image: markoshust/magento-php:8.0-fpm-develop | |
environment: | |
- TRAEFIK_DOMAIN | |
- TRAEFIK_SUBDOMAIN | |
- COMPOSER_MEMORY_LIMIT=-1 | |
volumes: | |
- appdata:/var/www/html | |
extra_hosts: | |
- ${TRAEFIK_DOMAIN}:${TRAEFIK_ADDRESS:-0.0.0.0} | |
- ${TRAEFIK_SUBDOMAIN:-app}.${TRAEFIK_DOMAIN}:${TRAEFIK_ADDRESS:-0.0.0.0} | |
volumes: | |
appdata: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment