From 7fe695785fb00af037f98e1b8efbf9832990a09c Mon Sep 17 00:00:00 2001 From: Shihaam Abdul Rahman Date: Fri, 14 Feb 2025 03:49:56 +0500 Subject: [PATCH] standerdize dockerfile name --- .build/compose.yml | 6 +++--- .build/{nextcloud.Dockerfile => fpm.Dockerfile} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename .build/{nextcloud.Dockerfile => fpm.Dockerfile} (100%) diff --git a/.build/compose.yml b/.build/compose.yml index bf3069c..39eb914 100644 --- a/.build/compose.yml +++ b/.build/compose.yml @@ -1,14 +1,14 @@ services: - nextcloud: + fpm: build: context: . - dockerfile: nextcloud.Dockerfile + dockerfile: fpm.Dockerfile args: NEXTCLOUD_VERSION: ${NEXTCLOUD_VERSION} NEXTCLOUD_URL: ${NEXTCLOUD_URL} NEXTCLOUD_FILENAME: ${NEXTCLOUD_FILENAME} hostname: nextcloud - image: git.shihaam.dev/dockerfiles/nextcloud/nextcloud:${NEXTCLOUD_VERSION} + image: git.shihaam.dev/dockerfiles/nextcloud/fpm:${NEXTCLOUD_VERSION} nginx: build: context: . diff --git a/.build/nextcloud.Dockerfile b/.build/fpm.Dockerfile similarity index 100% rename from .build/nextcloud.Dockerfile rename to .build/fpm.Dockerfile