{"id":24236792,"url":"https://github.com/wsawebmaster/docker-laravel-notes","last_synced_at":"2026-04-11T04:31:40.256Z","repository":{"id":271879969,"uuid":"914825862","full_name":"wsawebmaster/docker-laravel-notes","owner":"wsawebmaster","description":"Projeto Bloco de Notas curso Laravel 11","archived":false,"fork":false,"pushed_at":"2025-01-10T17:18:29.000Z","size":6016,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T14:49:49.343Z","etag":null,"topics":["blade","crud","css3","docker","docker-compose","html5","javascript","laravel11","php8"],"latest_commit_sha":null,"homepage":"","language":"PHP","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/wsawebmaster.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2025-01-10T11:38:45.000Z","updated_at":"2025-01-10T17:18:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"e2bd4630-5725-4e1e-87b0-d175f1e57044","html_url":"https://github.com/wsawebmaster/docker-laravel-notes","commit_stats":null,"previous_names":["wsawebmaster/docker-laravel-notes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wsawebmaster/docker-laravel-notes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsawebmaster%2Fdocker-laravel-notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsawebmaster%2Fdocker-laravel-notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsawebmaster%2Fdocker-laravel-notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsawebmaster%2Fdocker-laravel-notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wsawebmaster","download_url":"https://codeload.github.com/wsawebmaster/docker-laravel-notes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wsawebmaster%2Fdocker-laravel-notes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278891741,"owners_count":26063861,"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-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["blade","crud","css3","docker","docker-compose","html5","javascript","laravel11","php8"],"created_at":"2025-01-14T19:47:06.903Z","updated_at":"2025-10-08T05:26:45.471Z","avatar_url":"https://github.com/wsawebmaster.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://laravel.com\" target=\"_blank\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/laravel/art/master/logo-lockup/5%20SVG/2%20CMYK/1%20Full%20Color/laravel-logolockup-cmyk-red.svg\" width=\"400\" alt=\"Laravel Logo\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/laravel/framework/actions\"\u003e\u003cimg src=\"https://github.com/laravel/framework/workflows/tests/badge.svg\" alt=\"Build Status\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/dt/laravel/framework\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/v/laravel/framework\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://packagist.org/packages/laravel/framework\"\u003e\u003cimg src=\"https://img.shields.io/packagist/l/laravel/framework\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\n# Ambiente para desenvolvimento Docker com Laravel 11 e PHP 8.3\n\n### Passo a passo\nClone Repositório\n```sh\ngit clone https://github.com/wsawebmaster/docker-laravel-notes.git\n```\n```sh\ncd docker-laravel-notes\n```\n\nSuba os containers do projeto\n```sh\ndocker-compose up -d\n```\n\nCrie o Arquivo .env\n```sh\ncp .env.example .env\n```\n\nAcesse o container app\n```sh\ndocker-compose exec app bash\n```\n\nInstale as dependências do projeto\n```sh\ncomposer install\n```\n\nGere a key do projeto Laravel\n```sh\nphp artisan key:generate\n```\n\nRodar as migrations\n```sh\nphp artisan migrate\n```\n\nSaia do container\n```sh\nexit\n```\nAcesse o projeto\n[http://localhost:8000](http://localhost:8000)\n\nPara testes utilize\nUsuários: user1@gmail.com ou user2@gmail.com\nSenha: abc123456\n\n---\n---\n### Se necessário, ajuste as permissões com:\n\n    sudo chmod -R 755 .docker/mysql/dbdata/\n\n### Remover todos os contêineres, redes e volumes definidos no arquivo docker-compose.yml\n\n    docker-compose down\n\n### Remover contêineres, imagens e limpar redes não utilizadas.\n\n    [ \"$(docker ps -q)\" ] \u0026\u0026 docker stop $(docker ps -q); [ \"$(docker ps -aq)\" ] \u0026\u0026 docker rm $(docker ps -aq); [ \"$(docker images -q)\" ] \u0026\u0026 docker rmi $(docker images -q); docker network prune -f\n\n\n---\n---\n\n### 📧 Contato\n\n[LinkedIn](https://www.linkedin.com/in/wsawebmaster/)\n\n[wsawebmaster@yahoo.com.br](mailto:wsawebmaster@yahoo.com.br)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwsawebmaster%2Fdocker-laravel-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwsawebmaster%2Fdocker-laravel-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwsawebmaster%2Fdocker-laravel-notes/lists"}