Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grzegorzwalewski/bitnami-laravel-quickstart
bitnami laravel docker image requires you to already have laravel project installed if you are runing it in docker-compose. I've made walkaround for it, so it installs everyting it requires on new laravel project
https://github.com/grzegorzwalewski/bitnami-laravel-quickstart
Last synced: about 1 month ago
JSON representation
bitnami laravel docker image requires you to already have laravel project installed if you are runing it in docker-compose. I've made walkaround for it, so it installs everyting it requires on new laravel project
- Host: GitHub
- URL: https://github.com/grzegorzwalewski/bitnami-laravel-quickstart
- Owner: GrzegorzWalewski
- Created: 2024-05-06T11:26:21.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-08-06T17:57:22.000Z (5 months ago)
- Last Synced: 2024-08-06T21:23:59.425Z (5 months ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bitnami-laravel-quickstart
bitnami laravel docker image requires you to already have laravel project installed if you are runing it in docker-compose. I've made walkaround for it, so it installs everyting it requires on new laravel project# New laravel project
1. `git clone [email protected]:GrzegorzWalewski/bitnami-laravel-quickstart.git`
2. `cd bitnami-laravel-quickstart`
3. `docker-compose up -d --build`
Your new laravel project will be createad at `dirYouClonnedTheRepoTo/bitnami-laravel-quickstart/app`. You can access it at `localhost:8000`.# Existing Laravel project
1. `git clone [email protected]:GrzegorzWalewski/bitnami-laravel-quickstart.git`
2. `cd bitnami-laravel-quickstart`
3. Clone/copy your project into `app` directory (you have to create it)
4. `docker-compose up -d --build`
Your laravel project should be up and running at `localhost:8000`