Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Try Puppeteer | 655 | 2 years ago | 25 | apache-2.0 | JavaScript | |||||
Run Puppeteer code in the cloud | ||||||||||
Python Runtime | 211 | 7 months ago | 13 | apache-2.0 | Python | |||||
gcr.io/google_appengine/python - Docker images for python | ||||||||||
Fluentular | 176 | a month ago | 4 | mit | Ruby | |||||
:pencil: Fluentular is a Fluentd regular expression editor | ||||||||||
Elixir Runtime | 166 | a year ago | 5 | apache-2.0 | Elixir | |||||
The community-supported runtime for Elixir on Google App Engine. | ||||||||||
Ruby Docker | 130 | 9 months ago | 16 | apache-2.0 | Ruby | |||||
Ruby runtime for Google Cloud Platform | ||||||||||
Runtimes Common | 95 | 5 months ago | 5 | May 27, 2021 | 33 | apache-2.0 | Python | |||
Common tools used by the GCP runtimes. | ||||||||||
Appengine | 93 | 45 | 6 | 2 months ago | 62 | March 31, 2022 | 16 | bsd-3-clause | Dart | |
Dart support for App Engine managed VMs | ||||||||||
Docker Laravel Appengine | 70 | 2 years ago | mit | Dockerfile | ||||||
Laravel dockerized with official Google App Engine flexible php environment + swoole. | ||||||||||
Appengine Java Vm Runtime | 68 | 6 years ago | 39 | apache-2.0 | Java | |||||
Openjdk Runtime | 58 | 7 months ago | 33 | apache-2.0 | Shell | |||||
Google Cloud Platform OpenJDK Docker image |
AppEngine Java Docker Images built on Google CloudSDK Alpine Linux
Start using your devserver: docker run --rm -it -h localhost -v ~/.m2:/root/.m2 -v $(pwd):/usr/src/app -w /usr/src/app -p 8080:8080 zenika/alpine-appengine-java
mvn -Dapp.devserver.host="0.0.0.0" appengine:run
The parameter app.devserver.host
to 0.0.0.0
allow us to ping our devserver from the container. It's an equivalent to <host>0.0.0.0</host>
in the configuration
section of our beloved pom.xml
Start a bash using docker run --rm -it -h localhost -v ~/.m2:/root/.m2 -v $(pwd):/usr/src/app -v ~/.config/gcloud:/root/.config/gcloud -w /usr/src/app -p 8080:8080 zenika/alpine-appengine-java bash
We mount .config/gcloud
to save the credentials.
Then use the following command:
gcloud auth login
#copy paste the url in your browser and then paste the token in your bash
gcloud config set project imt-2017-11
gcloud config set app/promote_by_default false
mvn -Dapp.deploy.version=v0 appengine:deploy
After this first deployment, you can simply launch another deployment using:
docker run --rm -it -h localhost -v ~/.m2:/root/.m2 -v $(pwd):/usr/src/app -v ~/.config/gcloud:/root/.config/gcloud -w /usr/src/app -p 8080:8080 zenika/alpine-appengine-java mvn -Dapp.deploy.version=v1 appengine:deploy
Use the following command deployIndex
:
docker run --rm -it -h localhost -v ~/.m2:/root/.m2 -v $(pwd):/usr/src/app -v ~/.config/gcloud:/root/.config/gcloud -w /usr/src/app -p 8080:8080 zenika/alpine-appengine-java mvn -Dapp.deploy.version=v1 appengine:deployIndex
Use the following command deployQueue
:
docker run --rm -it -h localhost -v ~/.m2:/root/.m2 -v $(pwd):/usr/src/app -v ~/.config/gcloud:/root/.config/gcloud -w /usr/src/app -p 8080:8080 zenika/alpine-appengine-java mvn -Dapp.deploy.version=v1 appengine:deployQueue
docker run --rm zenika/alpine-appengine-java java -version
openjdk version "1.8.0_201"
OpenJDK Runtime Environment (IcedTea 3.11.0) (Alpine 8.201.08-r0)
OpenJDK 64-Bit Server VM (build 25.201-b08, mixed mode)
docker run --rm zenika/alpine-appengine-java mvn -v
Apache Maven 3.6.0 (97c98ec64a1fdfee7767ce5ffb20918da4f719f3; 2018-10-24T18:41:47Z)
Maven home: /usr/share/maven
Java version: 1.8.0_201, vendor: Oracle Corporation, runtime: /usr/lib/jvm/java-1.8-openjdk/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "4.9.125-linuxkit", arch: "amd64", family: "unix"