Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #26 from PizzaFactory/prp-update-to-the-master
Browse files Browse the repository at this point in the history
Prp update to the master
  • Loading branch information
monaka authored Feb 20, 2020
2 parents 9d7709e + cf7e787 commit 06d1457
Show file tree
Hide file tree
Showing 58 changed files with 129 additions and 81 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Global Owners
* @vparfonov @l0rd @rhopp @skabashnyuk @amisevsk @nickboldt @ibuziuk
* @tsmaeder @JPinkney @svor @sunix @benoitf
5 changes: 4 additions & 1 deletion .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Headers "Authorization"
DirectoryIndex README.md

<FilesMatch "\.(json|yaml)$">
AddType image/svg+xml svg svgz
AddEncoding gzip svgz

<FilesMatch "\.(json|yaml|svg|png)$">

<IfModule mod_expires.c>
ExpiresActive Off
Expand Down
32 changes: 18 additions & 14 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Below are the steps needed to do a release. But rather than doing them by hand, you can run this script:

https://github.com/eclipse/che-devfile-registry/blob/master/RELEASE.sh
https://github.com/eclipse/che-devfile-registry/blob/master/make-release.sh

HOWEVER, because the master branch is protected from commits, the above script will not be able to commit an update to the VERSION file. Instead it must produce a PR.

Expand All @@ -13,32 +13,36 @@ To github.com:eclipse/che-devfile-registry
! [remote rejected] master -> master (protected branch hook declined)
```

l- create a branch for the release e.g. `7.6.x`
- provide a [PR](https://github.com/eclipse/che-devfile-registry/pull/171) with bumping the [VERSION](https://github.com/eclipse/che-devfile-registry/blob/master/VERSION) file to the `7.6.x` branch
- [![Release Build Status](https://ci.centos.org/buildStatus/icon?subject=release&job=devtools-che-devfile-registry-release/)](https://ci.centos.org/job/devtools-che-devfile-registry-release/) CI is triggered based on the changes in the [`release`](https://github.com/eclipse/che-devfile-registry/tree/release) branch (not `7.6.x`).
- create a branch for the release e.g. `7.8.x`
- provide a [PR](https://github.com/eclipse/che-devfile-registry/pull/171) with bumping the [VERSION](https://github.com/eclipse/che-devfile-registry/blob/master/VERSION) file to the `7.8.x` branch
- [![Release Build Status](https://ci.centos.org/buildStatus/icon?subject=release&job=devtools-che-devfile-registry-release/)](https://ci.centos.org/job/devtools-che-devfile-registry-release/) CI is triggered based on the changes in the [`release`](https://github.com/eclipse/che-devfile-registry/tree/release) branch (not `7.8.x`).

In order to trigger the CI once the [PR](https://github.com/eclipse/che-devfile-registry/pull/171) is merged to the `7.6.x` one needs to:
In order to trigger the CI once the [PR](https://github.com/eclipse/che-devfile-registry/pull/171) is merged to the `7.8.x` one needs to:

```
git fetch origin 7.6.x:7.6.x
git checkout 7.6.x
git fetch origin 7.8.x:7.8.x
git checkout 7.8.x
git branch release -f
git push origin release -f
```

CI will build an image from the [`release`](https://github.com/eclipse/che-devfile-registry/tree/release) branch and push it to [quay.io](https://quay.io/organization/eclipse) e.g [quay.io/eclipse/che-devfile-registry:7.6.0](https://quay.io/repository/eclipse/che-devfile-registry?tab=tags&tag=7.6.0)
[CI](https://ci.centos.org/job/devtools-che-devfile-registry-release/) will build an image from the [`release`](https://github.com/eclipse/che-devfile-registry/tree/release) branch and push it to [quay.io](https://quay.io/organization/eclipse) e.g [quay.io/eclipse/che-devfile-registry:7.8.0](https://quay.io/repository/eclipse/che-devfile-registry?tab=tags&tag=7.8.0)

The last thing is the tag `7.6.0` creation from the `7.6.x` branch
The last thing is the tag `7.8.0` creation from the `7.8.x` branch

```
git checkout 7.6.x
git tag 7.6.0
git push origin 7.6.0
git checkout 7.8.x
git tag 7.8.0
git push origin 7.8.0
```

After the release, the `VERSION` file should be bumped in the master e.g. [`7.7.0-SNAPSHOT`](https://github.com/eclipse/che-devfile-registry/pull/172)
After the release, the `VERSION` file should be bumped in the master branch, e.g. to `7.9.0-SNAPSHOT`.

## Service / Bugfix Release

The release process is very similar to the Major / Minor one, just the existing branch should be used for the `VERSION` file bump e.g. `7.3.x` branch for `7.3.3` release - [PR](https://github.com/eclipse/che-devfile-registry/pull/156) example.
The release process is the same as for the Major / Minor one, but the values passed to the `make-release.sh` script will differ so that work is done in the existing 7.7.x branch.

```
./make-release.sh --repo [email protected]:eclipse/che-devfile-registry --version 7.7.1 --trigger-release
```

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.8.0-SNAPSHOT
7.9.0-SNAPSHOT
2 changes: 1 addition & 1 deletion arbitrary-users-patch/happy-path/build_happy_path_image.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (c) 2012-2019 Red Hat, Inc.
# Copyright (c) 2018-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (c) 2019 Red Hat, Inc.
# Copyright (c) 2019-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down
3 changes: 2 additions & 1 deletion build/dockerfiles/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018-2019 Red Hat, Inc.
# Copyright (c) 2018-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down Expand Up @@ -31,6 +31,7 @@ FROM registry.centos.org/centos/httpd-24-centos7 AS registry
RUN mkdir -m 777 /var/www/html/devfiles
COPY .htaccess README.md /var/www/html/
COPY --from=builder /build/devfiles /var/www/html/devfiles
COPY ./images /var/www/html/images
COPY ./build/dockerfiles/entrypoint.sh /usr/bin/
ENTRYPOINT ["/usr/bin/entrypoint.sh"]
CMD ["/usr/bin/run-httpd"]
Expand Down
7 changes: 4 additions & 3 deletions build/dockerfiles/rhel.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright (c) 2018-2019 Red Hat, Inc.
# Copyright (c) 2018-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
Expand All @@ -12,7 +12,7 @@

# Builder: check meta.yamls and create index.json
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi8-minimal
FROM registry.access.redhat.com/ubi8-minimal:8.1-328 as builder
FROM registry.access.redhat.com/ubi8-minimal:8.1-398 as builder
USER 0

#################
Expand Down Expand Up @@ -73,7 +73,7 @@ FROM registry.access.redhat.com/rhscl/httpd-24-rhel7:2.4-108.1575996463 AS regis

# DOWNSTREAM: use RHEL8/httpd
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/rhel8/httpd-24
# FROM registry.redhat.io/rhel8/httpd-24:1-70 AS registry
# FROM registry.redhat.io/rhel8/httpd-24:1-76 AS registry
USER 0

# BEGIN these steps might not be required
Expand All @@ -91,6 +91,7 @@ WORKDIR /var/www/html
RUN mkdir -m 777 /var/www/html/devfiles
COPY .htaccess README.md /var/www/html/
COPY --from=builder /build/devfiles /var/www/html/devfiles
COPY ./images /var/www/html/images
COPY ./build/dockerfiles/rhel.entrypoint.sh ./build/dockerfiles/entrypoint.sh /usr/local/bin/
RUN chmod g+rwX /usr/local/bin/entrypoint.sh /usr/local/bin/rhel.entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
Expand Down
3 changes: 3 additions & 0 deletions build/scripts/cache_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ mkdir -p "$RESOURCES_DIR" "$TEMP_DIR"

echo "Caching images referenced in devfiles"
while read -r image; do
if [[ ! "$image" == http* ]]; then
continue
fi
# Workaround for getting filenames through content-disposition: copy to temp
# dir and read filename before moving to /resources.
wget -P "${TEMP_DIR}" -nv --content-disposition "${image}"
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/check_mandatory_fields.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (c) 2018-2019 Red Hat, Inc.
# Copyright (c) 2018-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/list_containers.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (c) 2019 Red Hat, Inc.
# Copyright (c) 2019-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/list_referenced_images.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (c) 2019 Red Hat, Inc.
# Copyright (c) 2019-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down
2 changes: 1 addition & 1 deletion build/scripts/update_devfile_patched_image_tags.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
#
# Copyright (c) 2019 Red Hat, Inc.
# Copyright (c) 2019-2020 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
Expand Down
2 changes: 1 addition & 1 deletion devfiles/angular/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: NodeJS Angular Web Application
description: Stack for developing NodeJS Angular Web Application
tags: ["NodeJS", "Angular", "Alpine"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/angular.svg
globalMemoryLimit: 2686Mi
2 changes: 1 addition & 1 deletion devfiles/apache-camel-k/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Apache Camel K
description: Stack with tooling ready to develop Integration projects with Apache Camel K
tags: ["Apache Camel K", "Red Hat Fuse", "Integration"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/camelk.svg
globalMemoryLimit: 2850Mi
2 changes: 1 addition & 1 deletion devfiles/apache-camel-springboot/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Apache Camel based on Spring Boot
description: Stack with environment ready to develop Integration projects with Apache Camel based on Spring Boot.
tags: ["Java", "OpenJDK", "Maven", "Debian", "Apache Camel", "Red Hat Fuse", "Spring Boot"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/camelk.svg
globalMemoryLimit: 2930Mi
2 changes: 1 addition & 1 deletion devfiles/che4z/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Mainframe Basic Stack
description: Mainframe Basic Stack
tags: ["Che4z", "Zowe", "mainframe", "Endevor", "explorer", "dataset", "COBOL", "JCL", "zOS", "USS", "HLASM", "InterTest", "debug"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/mainframe.svg
globalMemoryLimit: 2280Mi
2 changes: 1 addition & 1 deletion devfiles/cpp/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: C/C++
description: Stack with C/C++ and Clang 8
tags: ["C/C++", "clang", "g++", "gdb"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/cpp.svg
globalMemoryLimit: 1686Mi
2 changes: 1 addition & 1 deletion devfiles/dotnet-asp.net/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: "ASP.NET Core Web Application"
description: Stack for developing ASP.NET Core Web Application
tags: ["Debian", "Dotnet", "C#", "ASP.NET"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/dotnetcore.svg
globalMemoryLimit: 2710Mi
2 changes: 1 addition & 1 deletion devfiles/dotnet/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: ".NET Core"
description: Stack with .Net 2.2
tags: ["Debian", "Dotnet", "C#"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/dotnetcore.svg
globalMemoryLimit: 2710Mi
3 changes: 3 additions & 0 deletions devfiles/go/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ components:
id: ms-vscode/go/latest
alias: go-plugin
memoryLimit: 512Mi
preferences:
go.lintTool: 'golangci-lint'
go.lintFlags: '--fast'
-
type: dockerimage
# this version is used in the plugin
Expand Down
2 changes: 1 addition & 1 deletion devfiles/go/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Go
description: Stack with Go 1.12.10
tags: ["Debian", "Go"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/go.svg
globalMemoryLimit: 1686Mi
2 changes: 1 addition & 1 deletion devfiles/java-gradle/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Java Gradle
description: Java Stack with OpenJDK 11 and Gradle 5.2.1
tags: ["Java", "OpenJDK", "Gradle", "Ubuntu"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/java.svg
globalMemoryLimit: 2674Mi
2 changes: 1 addition & 1 deletion devfiles/java-maven/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Java Maven
description: Java Stack with OpenJDK 11 and Maven 3.6.0
tags: ["Java", "OpenJDK", "Maven", "Debian"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/java.svg
globalMemoryLimit: 2674Mi
3 changes: 3 additions & 0 deletions devfiles/java-mongo/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ components:
discoverable: 'true'
public: 'false'
port: 27017
volumes:
- name: mongodb_data
containerPath: /var/lib/mongodb/data
commands:
-
name: maven build backend
Expand Down
2 changes: 1 addition & 1 deletion devfiles/java-mongo/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Java with Spring Boot and MongoDB
description: Java stack with OpenJDK 8, MongoDB and Spring Boot Guestbook demo application
tags: ["Java", "OpenJDK", "Maven", "Spring Boot", "MongoDB"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/java.svg
globalMemoryLimit: 2884Mi
8 changes: 5 additions & 3 deletions devfiles/java-mysql/devfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ projects:
source:
type: git
location: "https://github.com/spring-projects/spring-petclinic.git"
commitId: 93873665453584deb891569c02e3acc7283cf394
components:
-
type: chePlugin
Expand Down Expand Up @@ -43,7 +44,7 @@ components:
- name: MYSQL_USER
value: petclinic
- name: MYSQL_PASSWORD
value: password
value: petclinic
- name: MYSQL_DATABASE
value: petclinic
- name: PS1
Expand Down Expand Up @@ -74,7 +75,7 @@ commands:
command: |
SPRING_DATASOURCE_URL=jdbc:mysql://db/petclinic \
SPRING_DATASOURCE_USERNAME=petclinic \
SPRING_DATASOURCE_PASSWORD=password \
SPRING_DATASOURCE_PASSWORD=petclinic \
java -jar -Dspring.profiles.active=mysql \
-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 \
target/*.jar
Expand All @@ -86,7 +87,8 @@ commands:
type: exec
component: mysql
command: |
/opt/rh/rh-mysql57/root/usr/bin/mysql -u root < ${CHE_PROJECTS_ROOT}/web-java-spring-petclinic/src/main/resources/db/mysql/schema.sql &&
/opt/rh/rh-mysql57/root/usr/bin/mysql -u root < ${CHE_PROJECTS_ROOT}/web-java-spring-petclinic/src/main/resources/db/mysql/user.sql &&
/opt/rh/rh-mysql57/root/usr/bin/mysql -u root petclinic < ${CHE_PROJECTS_ROOT}/web-java-spring-petclinic/src/main/resources/db/mysql/schema.sql &&
echo -e "\e[32mDone.\e[0m Database petclinic was configured!"
- name: Debug remote java application
actions:
Expand Down
2 changes: 1 addition & 1 deletion devfiles/java-mysql/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Java with Spring Boot and MySQL
description: Java stack with OpenJDK 8, MySQL and Spring Boot Petclinic demo application
tags: ["Java", "OpenJDK", "Maven", "Spring Boot", "MySQL"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/springboot.svg
globalMemoryLimit: 3072Mi
2 changes: 1 addition & 1 deletion devfiles/java-web-spring/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Java Spring Boot
description: Java stack with OpenJDK 8 and Spring Boot Petclinic demo application
tags: ["Java", "OpenJDK", "Maven", "Spring Boot"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/springboot.svg
globalMemoryLimit: 3072Mi
2 changes: 1 addition & 1 deletion devfiles/java-web-vertx/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: Java Vert.x
description: Java stack with OpenJDK 8 and Vert.x demo application
tags: ["Java", "OpenJDK", "Maven", "Vertx"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/vertx.svg
globalMemoryLimit: 2674Mi
2 changes: 1 addition & 1 deletion devfiles/nodejs-mongo/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: NodeJS MongoDB Web Application
description: Stack with NodeJS 10 and MongoDB 3.4
tags: ["NodeJS", "Express", "MongoDB", "RealWorld", "ubi8", "Centos"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/nodejs.svg
globalMemoryLimit: 1686Mi
2 changes: 1 addition & 1 deletion devfiles/nodejs-react/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: NodeJS React Web Application
description: Stack for developing NodeJS React Web Application
tags: ["NodeJS", "React", "Redux", "RealWorld"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/nodejs.svg
globalMemoryLimit: 1686Mi
2 changes: 1 addition & 1 deletion devfiles/nodejs-yarn/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: NodeJS Web Application based on Yarn
description: Stack for developing NodeJS Web Application based on Yarn
tags: ["NodeJS", "Alpine", "Yarn", "React"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/nodejs.svg
globalMemoryLimit: 2198Mi
2 changes: 1 addition & 1 deletion devfiles/nodejs/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: NodeJS Express Web Application
description: Stack with NodeJS 10
tags: ["NodeJS", "Express", "ubi8"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/nodejs.svg
globalMemoryLimit: 1686Mi
2 changes: 1 addition & 1 deletion devfiles/php-laravel/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: "PHP Laravel with MySQL"
description: PHP Stack with Laravel and MySQL real world application
tags: ["PHP", "Apache", "MySQL", "Centos", "Debian"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/php.svg
globalMemoryLimit: 2686Mi
2 changes: 1 addition & 1 deletion devfiles/php-mysql/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: "PHP with MySQL"
description: PHP Stack with MySQL and simple database application
tags: ["PHP", "Apache", "MySQL", "Debian", "Centos"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/php.svg
globalMemoryLimit: 2686Mi
2 changes: 1 addition & 1 deletion devfiles/php-symfony/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: "PHP Symfony"
description: PHP Stack with Symfony Demo Application https://symfony.com/
tags: ["PHP", "Apache", "MySQL", "Symfony", "Debian", "Centos"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/php.svg
globalMemoryLimit: 2686Mi
2 changes: 1 addition & 1 deletion devfiles/php-web-simple/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
displayName: "PHP Simple"
description: PHP Stack with PHP 7.1 and simple web application
tags: ["PHP", "Apache", "Debian"]
icon: https://www.eclipse.org/che/images/logo-eclipseche.svg
icon: /images/php.svg
globalMemoryLimit: 2430Mi
Loading

0 comments on commit 06d1457

Please sign in to comment.