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
- Host: GitHub
- URL: https://github.com/chiragpadyal/apache-docker-example
- Owner: chiragpadyal
- Created: 2024-07-20T09:44:54.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-23T13:54:47.000Z (almost 2 years ago)
- Last Synced: 2024-07-23T16:08:23.432Z (almost 2 years ago)
- Topics: apache, containerization, docker, docker-compose, mysql, nodejs
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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
```