From 31c58574355c8d9f6c04d5854d0222c78f3458d9 Mon Sep 17 00:00:00 2001 From: Michael Schiemer Date: Sun, 18 May 2025 17:00:36 +0200 Subject: [PATCH] chore: use env variables in docker-compose.yml --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8cce4f91..24d29b62 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,13 +4,13 @@ services: web: build: ./app ports: - - "8000:80" + - "${APP_PORT}:80" volumes: - ./app/html:/var/www/html depends_on: - php php: - image: php:8.4-fpm + image: php:${PHP_VERSION}-fpm volumes: - ./app/html:/var/www/html