We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 849f4fd commit 69be42cCopy full SHA for 69be42c
Makefile
@@ -33,9 +33,9 @@ build:
33
push:
34
@echo "note: If the repository is set as an automatted build you will NOT be able to push"
35
docker push $(IMAGE_NAME):$(VERSION)
36
-
+
37
run:
38
- php -r 'file_exists(".env") || copy(".env.example", ".env");'
+ [ ! -f .env ] && echo '.env2 file does not exist, copy a base env template' && cp .env.example .env || echo "env file exists"
39
docker-compose -f docker-compose.local.yml up -d
40
41
start: run
0 commit comments