{"id":28504493,"url":"https://github.com/ralphschindler/tripleshot","last_synced_at":"2025-07-22T08:32:23.551Z","repository":{"id":137212534,"uuid":"97784019","full_name":"ralphschindler/tripleshot","owner":"ralphschindler","description":"Docker Container for PHP 7 + Nginx + Node","archived":false,"fork":false,"pushed_at":"2021-09-08T13:42:10.000Z","size":66,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-06T04:38:02.305Z","etag":null,"topics":["container","docker","nginx","nodejs","php","php7"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ralphschindler.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2017-07-20T02:57:17.000Z","updated_at":"2020-03-09T11:29:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"68334e5f-6496-4ed2-8734-810f69e2f7db","html_url":"https://github.com/ralphschindler/tripleshot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ralphschindler/tripleshot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphschindler%2Ftripleshot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphschindler%2Ftripleshot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphschindler%2Ftripleshot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphschindler%2Ftripleshot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ralphschindler","download_url":"https://codeload.github.com/ralphschindler/tripleshot/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ralphschindler%2Ftripleshot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266456245,"owners_count":23931383,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["container","docker","nginx","nodejs","php","php7"],"created_at":"2025-06-08T18:05:42.785Z","updated_at":"2025-07-22T08:32:23.533Z","avatar_url":"https://github.com/ralphschindler.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Tripleshot\n\nA minimal Docker container to run Laravel applications. Has nginx, php 7.4,\nnode 12, and a handful of bash tools (listed in packages.sh).\n\n## Quickstart\n\nTo see this in action in as few steps as possible, run the following commands. This will create a new project in your user tmp directory (you may have to create this too).  The 2nd to last step will open the app in a browser, the last step will give you a shell inside the running web container.\n\nTools required:\n- `composer global require laravel/installer`\n- wget\n- docker \u0026 docker-compose\n\nCommands:\n\n```console\n$ alias dc='docker-compose'\n$ cd ~/tmp\n$ laravel new test-docker-image\n$ cd test-docker-image/\n$ wget --quiet https://raw.githubusercontent.com/ralphschindler/tripleshot/master/docker-compose.example.yml -O docker-compose.yml\n$ dc up -d\n$ open http://localhost:8000\n$ dc exec web bash\n```\n\n## Usage\n\nFor development, start with a `docker-compose.yml` file that utilizes this\ncontainer.  Here is an example that also launches Redis and MySQL:\n\n```yaml\nversion: '2.2'\n\nservices:\n  web:\n    image: docker.pkg.github.com/ralphschindler/tripleshot/php74-node12:latest\n    environment:\n      APP_NAME: my-app\n      APP_ENV: local\n      XDEBUG_CONFIG: remote_enable=1\n      PHP_IDE_CONFIG: serverName=localhost\n    ports:\n      - 8000:80\n    volumes:\n      - .:/app\n    links:\n      - mysql\n      - redis\n\n  mysql:\n    image: mysql:8\n    command: --default-authentication-plugin=mysql_native_password\n    ports:\n      - 3306:3306\n    environment:\n      MYSQL_ROOT_PASSWORD: root\n      MYSQL_DATABASE: developer\n      MYSQL_USER: developer\n      MYSQL_PASSWORD: developer\n\n  redis:\n    image: redis:latest\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fralphschindler%2Ftripleshot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fralphschindler%2Ftripleshot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fralphschindler%2Ftripleshot/lists"}