https://github.com/grmvoid/docker-nginx
🐳 Docker image for Nginx
https://github.com/grmvoid/docker-nginx
docker docker-image docker-nginx dockerfile nginx
Last synced: 2 months ago
JSON representation
🐳 Docker image for Nginx
- Host: GitHub
- URL: https://github.com/grmvoid/docker-nginx
- Owner: grmvoid
- License: mit
- Created: 2023-09-28T03:00:11.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-17T07:29:39.000Z (4 months ago)
- Last Synced: 2025-02-17T08:28:13.341Z (4 months ago)
- Topics: docker, docker-image, docker-nginx, dockerfile, nginx
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/grmvoid/nginx
- Size: 59.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Nginx Docker Container Image
A lightweight Nginx container image based on Alpine Linux, building with the Clang and LLVM.
## Quick reference
- **Image based on**: [alpine](https://hub.docker.com/_/alpine)
- **Supported architectures**: `linux/amd64`, `linux/arm64`
- **Maintained by**: [grmvoid](https://github.com/grmvoid)
- **Issues**: [https://github.com/grmvoid/docker-nginx/issues](https://github.com/grmvoid/docker-nginx/issues?q=)## Usage
### Pull the Image
To get started, pull the specify a version Nginx image:
```bash
docker pull grmvoid/nginx:1.27.4
```### Running a Container
You can run the Nginx container interactively using the following command:
```bash
docker run --name nginx -d grmvoid/nginx:1.27.4
```### Running via [`docker-compose`](https://github.com/docker/compose)
Example `docker-compose.yml` for `nginx`:
```yaml
services:
nginx:
image: grmvoid/nginx:1.27.4
restart: always
ports:
- "80:80"
```## LICENSE
This repository follows the [Nginx License](https://nginx.org/LICENSE). Individual dependencies may have their own licensing terms.Additionally, the contents of this repository are licensed under the [MIT License](LICENSE).