An open API service indexing awesome lists of open source software.

https://github.com/chiragpadyal/apache-docker-example

Mysql, Node and Apache Server Containerized using Docker
https://github.com/chiragpadyal/apache-docker-example

apache containerization docker docker-compose mysql nodejs

Last synced: 3 months ago
JSON representation

Mysql, Node and Apache Server Containerized using Docker

Awesome Lists containing this project

README

          

# Docker Apache and Mysql

## Just Frontend
### build image
```
$ docker build -t my-apache2 .
```
### run docker image
```
$ docker run -d --name my-running-app -p 8080:80 my-apache2
```

## Docker compose
### docker-compose command to start mysql and that ngnix Frontend
```
docker-compose up
```