Skip to content

Commit

Permalink
Merge branch 'release/next' into fix/incorrect-links
Browse files Browse the repository at this point in the history
  • Loading branch information
YevhenZvieriev authored Apr 17, 2024
2 parents 438cc0f + ed401d3 commit 592c276
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 13 deletions.
5 changes: 5 additions & 0 deletions compose/bin/download
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ NC='\033[0m' # No Color

bin/stop

if [ -d "./bin" ]; then
echo "Error: The current directory is not empty. Please remove all contents within this directory and try again."
exit 1
fi

bin/start --no-dev
[ $? != 0 ] && echo "Failed to start Docker services" && exit

Expand Down
2 changes: 0 additions & 2 deletions compose/compose.dev-linux.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
app:
volumes: &appvolumes
Expand Down
2 changes: 0 additions & 2 deletions compose/compose.dev-ssh.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
app:
volumes: &appvolumes
Expand Down
2 changes: 0 additions & 2 deletions compose/compose.dev.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
app:
volumes: &appvolumes
Expand Down
2 changes: 0 additions & 2 deletions compose/compose.healthcheck.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3"

services:
app:
healthcheck:
Expand Down
6 changes: 2 additions & 4 deletions compose/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
## 172.17.0.1 in this file with the result of:
## docker network inspect bridge --format='{{(index .IPAM.Config 0).Gateway}}'

version: "3"

services:
app:
image: markoshust/magento-nginx:1.24-0
Expand Down Expand Up @@ -116,14 +114,14 @@ services:
image: sj26/mailcatcher
ports:
- "1080:1080"

## Cloudflare tunnel support, uncomment to enable
#tunnel:
# container_name: cloudflared-tunnel
# image: cloudflare/cloudflared:latest
# command: tunnel run
# env_file: env/cloudflare.env

## Blackfire support, uncomment to enable
#blackfire:
# image: blackfire/blackfire:2
Expand Down
2 changes: 1 addition & 1 deletion lib/onelinesetup
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -o errexit

DOMAIN=${1:-magento.test}
VERSION=${2:-2.4.6-p4}
VERSION=${2:-2.4.7}
EDITION=${3:-community}

curl -s https://raw.githubusercontent.com/markshust/docker-magento/release/next/lib/template | bash
Expand Down
6 changes: 6 additions & 0 deletions lib/template
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ git init -qqq
git remote add origin https://github.com/markshust/docker-magento
git fetch origin -qqq
git checkout origin/release/next -- compose

if [ -d "./bin" ]; then
echo "Error: The current directory is not empty. Please remove all contents within this directory and try again."
exit 1
fi

mv compose/* ./
mv compose/.gitignore ./
mv compose/.vscode ./
Expand Down

0 comments on commit 592c276

Please sign in to comment.