Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imteajsajid12/docker-php
php with docker
https://github.com/imteajsajid12/docker-php
docker docker-compose dockerfile nginx php php8
Last synced: about 2 months ago
JSON representation
php with docker
- Host: GitHub
- URL: https://github.com/imteajsajid12/docker-php
- Owner: imteajsajid12
- License: mit
- Created: 2023-08-07T06:58:46.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-15T12:31:45.000Z (about 1 year ago)
- Last Synced: 2023-10-16T14:30:25.665Z (about 1 year ago)
- Topics: docker, docker-compose, dockerfile, nginx, php, php8
- Language: PHP
- Homepage:
- Size: 9.42 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP 8 development environment with PHP-FPM, Nginx and MySQL, using Docker and Docker Compose
You need to have Docker and Docker Compose installed on your server to proceed using this PHP environment.
The following three separate service containers will be used:
- An `app` service running PHP 8 FPM.
- A `db` service running MySQL.
- An `nginx` service that uses the `app` service to parse PHP code before serving the application to the final user.## Running the environment
- Set the MySQL environment variables creating a `.env` file based on the `.env.example` file.
- Build the app image with the following command:
```bash
docker-compose build app
```- When the build is finished, you can run the environment in background mode with:
```bash
docker-compose up -d
```- To show information about the state of your active services, run:
```bash
docker-compose ps
```You can use the `docker-compose exec` command to execute commands in the service containers, such as an `ls -l` to show detailed information about files in the application directory:
```bash
docker-compose exec app ls -l
```- Now go to your browser and access your server’s domain name or IP address on port `8000`: `http://server_domain_or_IP:8000`. In case you are running this demo on your local machine, use `http://localhost:8000` to access the application from your browser.
- You can use the logs command to check the logs generated by your services:
```bash
docker-compose logs nginx
```- If you want to pause your Docker Compose environment while keeping the state of all its services, run:
```bash
docker-compose pause
```- You can then resume your services with:
```bash
docker-compose unpause
```- To shut down your Docker Compose environment and remove all of its containers, networks, and volumes, run:
```bash
docker-compose down
```