Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dockerbound-immortal/lemp-phpmyadmin
LEMP stack with PHPMyAdmin, pdo_mysql enabled
https://github.com/dockerbound-immortal/lemp-phpmyadmin
artisan docker-containers mysql5 nginx node13 php7 phpmyadmin
Last synced: about 1 month ago
JSON representation
LEMP stack with PHPMyAdmin, pdo_mysql enabled
- Host: GitHub
- URL: https://github.com/dockerbound-immortal/lemp-phpmyadmin
- Owner: Dockerbound-Immortal
- Created: 2020-11-07T21:14:22.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-07T21:18:21.000Z (about 4 years ago)
- Last Synced: 2023-10-20T08:06:56.070Z (about 1 year ago)
- Topics: artisan, docker-containers, mysql5, nginx, node13, php7, phpmyadmin
- Language: VBA
- Homepage:
- Size: 6.86 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-compose-laravel
Simplified LEPP stack for local development.# Note
Create a docker volume called 'data-postgres' before spinning up the containerThis is a workaround for an issue in which postgres permissions no longer allow
for the data to be persisted over volumes.## Usage
Build Laravel file in src folder, or add php files to the "public/" directory. Run `docker-compose up -d --build` at root. Open browser to [http://localhost:8080](http://localhost:8080).
Three new available have been added that handle Composer, NPM, and Artisan commands without having to have these platforms installed on your local computer. Use the following command templates from your project root, modifiying them to fit your particular use case:
- `docker-compose run --rm composer update`
- `docker-compose run --rm npm run dev`
- `docker-compose run --rm artisan migrate`Containers created and their ports (if used) are as follows:
- **nginx** - `:8080`
- **mysql** - `:3306`
- **php** - `:9000`
- **phpmyadmin** - `:5000`
- **npm**
- **composer**
- **artisan**## PHPMyAdmin
### Login
server: mysql
Username: root
password: ${MYSQL_ROOT_PASSWORD}### Issues
## MYSQL Resatrting
- Mysql continuously restarting.
### Solution
- Delete mysql folder, recreate and redeploy containers