From bc491626b82b5c49602e7c9077198c04c9897075 Mon Sep 17 00:00:00 2001 From: colin Date: Mon, 29 Jan 2024 00:06:33 +0000 Subject: [PATCH] Update docker-compose.production.yml --- docker-compose.production.yml | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/docker-compose.production.yml b/docker-compose.production.yml index 5dbfda5..4a797f2 100644 --- a/docker-compose.production.yml +++ b/docker-compose.production.yml @@ -1,26 +1,31 @@ version: '3.9' services: php-version-7.1: - build: ./docker/7.1/ - context: Dockerfile + build: + context: ./docker/7.1/ + dockerfile: Dockerfile image: git.nixc.us/colin/php-legacy:production-7.1 php-version-7.1-apache: - build: ./docker/7.1-apache - context: Dockerfile + build: + context: ./docker/7.1-apache + dockerfile: Dockerfile image: git.nixc.us/colin/php-legacy:production-7.1-apache php-version-5.6: - build: ./docker/5.6/ - context: Dockerfile + build: + context: ./docker/5.6/ + dockerfile: Dockerfile image: git.nixc.us/colin/php-legacy:production-5.6 dns: - 9.9.9.9 php-version-5.6-apache: - build: ./docker/5.6-apache/ - context: Dockerfile + build: + context: ./docker/5.6-apache/ + dockerfile: Dockerfile image: git.nixc.us/colin/php-legacy:production-5.6-apache dns: - 9.9.9.9 php-version-7.4: - build: ./docker/7.4/ - context: Dockerfile + build: + context: ./docker/7.4/ + dockerfile: Dockerfile image: git.nixc.us/colin/php-legacy:production-7.4 \ No newline at end of file