This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM centos/php-71-centos7 | |
| MAINTAINER Timothy Teoh <chalcedonyt@gmail.com> | |
| USER root | |
| RUN mkdir -p /opt/app-root/src \ | |
| && chown -R 1001:0 /opt/app-root \ | |
| && chmod -R og+rwx /opt/app-root \ | |
| && chmod -R +x $STI_SCRIPTS_PATH |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| project := my-laravel-app | |
| image := laravel-starter-kit | |
| tag := latest | |
| repo_or_dir := $$PWD | |
| builder_image := laravel-builder | |
| runtime_image := laravel-runtime | |
| # Prepare the S2I builder and runtime images | |
| .PHONY: s2i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apiVersion: v1 | |
| kind: Template | |
| metadata: | |
| name: my-laravel-app | |
| objects: | |
| - apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| labels: | |
| app: ${NAME} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| registry := registry.starter-us-east-1.openshift.com | |
| project := my-laravel-app | |
| image := laravel-starter-kit | |
| tag := latest | |
| repo_or_dir := $$PWD | |
| builder_image := laravel-builder | |
| runtime_image := laravel-runtime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file is a template, and might need editing before it works on your project. | |
| # Select image from https://hub.docker.com/_/php/ | |
| stages: | |
| - build_npm | |
| - build_and_test | |
| # Select what we should cache between builds | |
| cache: | |
| paths: | |
| - vendor/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "code": 200, | |
| "status": "OK", | |
| "data": { | |
| //the order group | |
| "uid": "ORG_UDBNCJ_5682_1827", | |
| "type": "DM_UPFRONT", | |
| "label": "APC1M", | |
| "tags": [], | |
| "workspaceCode": "TIM_WORKSPACE", |
OlderNewer