https://github.com/namikazebadri/starterkit-phalcon
Phalcon project template with a lot of basic project must-have features, such as containerization and deployments to GCR, ECR, Dockerhub and regular old VM using Github Actions. Also Unit Test, Code Coverage, Static Analysis and Staged Flow (such as dev, staging, uat and production) are part of this project template repository.
https://github.com/namikazebadri/starterkit-phalcon
docker-image dockerhub phalcon-application phalcon-framework php7 project-template
Last synced: 10 days ago
JSON representation
Phalcon project template with a lot of basic project must-have features, such as containerization and deployments to GCR, ECR, Dockerhub and regular old VM using Github Actions. Also Unit Test, Code Coverage, Static Analysis and Staged Flow (such as dev, staging, uat and production) are part of this project template repository.
- Host: GitHub
- URL: https://github.com/namikazebadri/starterkit-phalcon
- Owner: namikazebadri
- License: mit
- Created: 2021-04-10T01:33:06.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-04-16T13:53:17.000Z (about 5 years ago)
- Last Synced: 2025-01-18T07:44:41.016Z (over 1 year ago)
- Topics: docker-image, dockerhub, phalcon-application, phalcon-framework, php7, project-template
- Language: PHP
- Homepage:
- Size: 44.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Phalcon Docker Image
Build docker image for Phalcon application.
## Build Image
To build image run this command (__change the tag name & version with your preferred tag name & version__).
`$ docker build . -t myorganization/myimage:1.0.0`
## Running Container from Image
To create a container from the image, run this command (__change the tag name & version with your preferred tag name & version__).
`$ docker run -d -p 8080:8080 --name phalcon-app myorganization/myimage:1.0.0`
Then you can access the app from the browser with this url: `http://127.0.0.1:8080`
## Dockerhub image
This repository is proven by running build in Dockerhub, you can see the result [here](https://hub.docker.com/r/namikazebadri/phalcon-app).