Skip to content

[5.x] Update README.md for application images #257

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .github/workflows/cleanup.yml

This file was deleted.

3 changes: 3 additions & 0 deletions build/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ app-*)
;;
laravel)
# https://laravel.com/docs/master/installation
ALLOW_RC=1
BUILD_FROM_IMAGE="$DEFAULT_REPO/phpfpm-nginx"
;;
magento)
Expand Down Expand Up @@ -272,12 +273,14 @@ app-*)
;;
symfony)
# https://symfony.com/doc/current/setup.html
ALLOW_RC=1
;;
sulu)
# https://github.com/sulu/skeleton
;;
wordpress)
# https://wordpress.org/documentation/category/installation
ALLOW_RC=1
;;
bedrock)
# https://roots.io/bedrock/docs/installation
Expand Down
2 changes: 1 addition & 1 deletion build/helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ path_hash() {
for target; do
if [ ! -z "$target" ]; then
if [ -d "$target" ]; then
find "$target" -type f -not -name '.*' \
find "$target" -type f ! -name '.*' ! -name '*.md' \
| sort -dbfi | xargs -r shasum 2>/dev/null
elif [ -f "$target" ]; then
shasum "$target" 2>/dev/null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ if [ -z "$(ls -A "$APP_PATH")" ]; then
else
cp -pn "$temp" "$APP_PATH"/ &>/dev/null
fi
rm -rf "$temp" "$filename"
;;
*/*)
debug-echo "Installing project $INITIAL_PROJECT to $APP_PATH."
Expand Down
4 changes: 2 additions & 2 deletions src/php/common/shell-php/phpaddmod
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
# - Author: SHIN Company <[email protected]>
# - License: https://code.shin.company/php/blob/main/LICENSE
################################################################################
if ! has-cmd php; then exit 0; fi
if ! has-cmd install-php-extensions; then exit 0; fi
if ! has-cmd php; then exit 1; fi
if ! has-cmd install-php-extensions; then exit 1; fi

# show usage if no arguments are passed
if [ $# -eq 0 ]; then
Expand Down
10 changes: 5 additions & 5 deletions src/webapps/bedrock/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ When you mount an empty directory into the container, it will automatically down
1. Create an empty directory on your host machine for your project code. For example:

```shell
mkdir myproject
mkdir bedrock
```

2. Run the container and mount the empty directory as a volume. For example:

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./bedrock:/var/www/html \
shinsenter/bedrock:latest
```

Expand Down Expand Up @@ -86,14 +86,14 @@ COPY my_domain.key /etc/ssl/site/server.key

# Add your instructions here
# For example:
# ADD --chown=$APP_USER:$APP_GROUP ./myproject/ /var/www/html/
# ADD --chown=$APP_USER:$APP_GROUP ./bedrock/ /var/www/html/
```

#### Using docker run

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./bedrock:/var/www/html \
-v ./my_domain.crt:/etc/ssl/site/server.crt \
-v ./my_domain.key:/etc/ssl/site/server.key \
shinsenter/bedrock:latest
Expand All @@ -106,7 +106,7 @@ services:
web:
image: shinsenter/bedrock:latest
volumes:
- ./myproject:/var/www/html
- ./bedrock:/var/www/html
- ./my_domain.crt:/etc/ssl/site/server.crt
- ./my_domain.key:/etc/ssl/site/server.key
```
Expand Down
10 changes: 5 additions & 5 deletions src/webapps/cakephp4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ When you mount an empty directory into the container, it will automatically down
1. Create an empty directory on your host machine for your project code. For example:

```shell
mkdir myproject
mkdir cakephp4
```

2. Run the container and mount the empty directory as a volume. For example:

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./cakephp4:/var/www/html \
shinsenter/cakephp4:latest
```

Expand Down Expand Up @@ -83,14 +83,14 @@ COPY my_domain.key /etc/ssl/site/server.key

# Add your instructions here
# For example:
# ADD --chown=$APP_USER:$APP_GROUP ./myproject/ /var/www/html/
# ADD --chown=$APP_USER:$APP_GROUP ./cakephp4/ /var/www/html/
```

#### Using docker run

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./cakephp4:/var/www/html \
-v ./my_domain.crt:/etc/ssl/site/server.crt \
-v ./my_domain.key:/etc/ssl/site/server.key \
shinsenter/cakephp4:latest
Expand All @@ -103,7 +103,7 @@ services:
web:
image: shinsenter/cakephp4:latest
volumes:
- ./myproject:/var/www/html
- ./cakephp4:/var/www/html
- ./my_domain.crt:/etc/ssl/site/server.crt
- ./my_domain.key:/etc/ssl/site/server.key
```
Expand Down
10 changes: 5 additions & 5 deletions src/webapps/cakephp5/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ When you mount an empty directory into the container, it will automatically down
1. Create an empty directory on your host machine for your project code. For example:

```shell
mkdir myproject
mkdir cakephp5
```

2. Run the container and mount the empty directory as a volume. For example:

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./cakephp5:/var/www/html \
shinsenter/cakephp5:latest
```

Expand Down Expand Up @@ -83,14 +83,14 @@ COPY my_domain.key /etc/ssl/site/server.key

# Add your instructions here
# For example:
# ADD --chown=$APP_USER:$APP_GROUP ./myproject/ /var/www/html/
# ADD --chown=$APP_USER:$APP_GROUP ./cakephp5/ /var/www/html/
```

#### Using docker run

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./cakephp5:/var/www/html \
-v ./my_domain.crt:/etc/ssl/site/server.crt \
-v ./my_domain.key:/etc/ssl/site/server.key \
shinsenter/cakephp5:latest
Expand All @@ -103,7 +103,7 @@ services:
web:
image: shinsenter/cakephp5:latest
volumes:
- ./myproject:/var/www/html
- ./cakephp5:/var/www/html
- ./my_domain.crt:/etc/ssl/site/server.crt
- ./my_domain.key:/etc/ssl/site/server.key
```
Expand Down
10 changes: 5 additions & 5 deletions src/webapps/codeigniter4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ When you mount an empty directory into the container, it will automatically down
1. Create an empty directory on your host machine for your project code. For example:

```shell
mkdir myproject
mkdir codeigniter4
```

2. Run the container and mount the empty directory as a volume. For example:

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./codeigniter4:/var/www/html \
shinsenter/codeigniter4:latest
```

Expand Down Expand Up @@ -83,14 +83,14 @@ COPY my_domain.key /etc/ssl/site/server.key

# Add your instructions here
# For example:
# ADD --chown=$APP_USER:$APP_GROUP ./myproject/ /var/www/html/
# ADD --chown=$APP_USER:$APP_GROUP ./codeigniter4/ /var/www/html/
```

#### Using docker run

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./codeigniter4:/var/www/html \
-v ./my_domain.crt:/etc/ssl/site/server.crt \
-v ./my_domain.key:/etc/ssl/site/server.key \
shinsenter/codeigniter4:latest
Expand All @@ -103,7 +103,7 @@ services:
web:
image: shinsenter/codeigniter4:latest
volumes:
- ./myproject:/var/www/html
- ./codeigniter4:/var/www/html
- ./my_domain.crt:/etc/ssl/site/server.crt
- ./my_domain.key:/etc/ssl/site/server.key
```
Expand Down
10 changes: 5 additions & 5 deletions src/webapps/coolify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ When you mount an empty directory into the container, it will automatically down
1. Create an empty directory on your host machine for your project code. For example:

```shell
mkdir myproject
mkdir coolify
```

2. Run the container and mount the empty directory as a volume. For example:

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./coolify:/var/www/html \
shinsenter/coolify:latest
```

Expand Down Expand Up @@ -83,14 +83,14 @@ COPY my_domain.key /etc/ssl/site/server.key

# Add your instructions here
# For example:
# ADD --chown=$APP_USER:$APP_GROUP ./myproject/ /var/www/html/
# ADD --chown=$APP_USER:$APP_GROUP ./coolify/ /var/www/html/
```

#### Using docker run

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./coolify:/var/www/html \
-v ./my_domain.crt:/etc/ssl/site/server.crt \
-v ./my_domain.key:/etc/ssl/site/server.key \
shinsenter/coolify:latest
Expand All @@ -103,7 +103,7 @@ services:
web:
image: shinsenter/coolify:latest
volumes:
- ./myproject:/var/www/html
- ./coolify:/var/www/html
- ./my_domain.crt:/etc/ssl/site/server.crt
- ./my_domain.key:/etc/ssl/site/server.key
```
Expand Down
10 changes: 5 additions & 5 deletions src/webapps/drupal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ When you mount an empty directory into the container, it will automatically down
1. Create an empty directory on your host machine for your project code. For example:

```shell
mkdir myproject
mkdir drupal
```

2. Run the container and mount the empty directory as a volume. For example:

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./drupal:/var/www/html \
shinsenter/drupal:latest
```

Expand Down Expand Up @@ -83,14 +83,14 @@ COPY my_domain.key /etc/ssl/site/server.key

# Add your instructions here
# For example:
# ADD --chown=$APP_USER:$APP_GROUP ./myproject/ /var/www/html/
# ADD --chown=$APP_USER:$APP_GROUP ./drupal/ /var/www/html/
```

#### Using docker run

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./drupal:/var/www/html \
-v ./my_domain.crt:/etc/ssl/site/server.crt \
-v ./my_domain.key:/etc/ssl/site/server.key \
shinsenter/drupal:latest
Expand All @@ -103,7 +103,7 @@ services:
web:
image: shinsenter/drupal:latest
volumes:
- ./myproject:/var/www/html
- ./drupal:/var/www/html
- ./my_domain.crt:/etc/ssl/site/server.crt
- ./my_domain.key:/etc/ssl/site/server.key
```
Expand Down
10 changes: 5 additions & 5 deletions src/webapps/espocrm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ When you mount an empty directory into the container, it will automatically down
1. Create an empty directory on your host machine for your project code. For example:

```shell
mkdir myproject
mkdir espocrm
```

2. Run the container and mount the empty directory as a volume. For example:

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./espocrm:/var/www/html \
shinsenter/espocrm:latest
```

Expand Down Expand Up @@ -83,14 +83,14 @@ COPY my_domain.key /etc/ssl/site/server.key

# Add your instructions here
# For example:
# ADD --chown=$APP_USER:$APP_GROUP ./myproject/ /var/www/html/
# ADD --chown=$APP_USER:$APP_GROUP ./espocrm/ /var/www/html/
```

#### Using docker run

```shell
docker run -p 80:80 -p 443:443 -p 443:443/udp \
-v ./myproject:/var/www/html \
-v ./espocrm:/var/www/html \
-v ./my_domain.crt:/etc/ssl/site/server.crt \
-v ./my_domain.key:/etc/ssl/site/server.key \
shinsenter/espocrm:latest
Expand All @@ -103,7 +103,7 @@ services:
web:
image: shinsenter/espocrm:latest
volumes:
- ./myproject:/var/www/html
- ./espocrm:/var/www/html
- ./my_domain.crt:/etc/ssl/site/server.crt
- ./my_domain.key:/etc/ssl/site/server.key
```
Expand Down
Loading