Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/devenes/docker-nginx

This is a simple Nginx web server that runs on a Docker container.
https://github.com/devenes/docker-nginx

docker nginx

Last synced: 14 days ago
JSON representation

This is a simple Nginx web server that runs on a Docker container.

Awesome Lists containing this project

README

        


 


Docker


Github top language

Github language count

Repository size

License



About   |  
Technologies   |  
Requirements   |  
Starting   |  
License   |  
Author


## :dart: About ##

This is a simple Nginx web server that runs on a Docker container.

## :rocket: Technologies ##

The following tools were used in this project:

- [Docker](https://www.docker.com/)
- [Nginx](https://nginx.org/)

## :white_check_mark: Requirements ##

Before starting :checkered_flag:, you need to have [Docker](https://www.docker.com/) installed.

## :checkered_flag: Starting ##

```bash
# Clone this project to your local machine
git clone https://github.com/devenes/docker-nginx.git
```

```bash
# Access the project directory
cd docker-nginx
```

```bash
# Build Docker image
docker build -t devenes/webapp:1 .
```

```bash
# Run the image in a container
docker run --rm -i -t -d -p 8080:80 devenes/webapp:1
```

## The server will initialize in the

## :memo: License ##

This project is under license from MIT. For more details, see the [LICENSE](LICENSE) file.

Made with :heart: by devenes

 

Back to top