Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grmvoid/docker-nginx
🐳 Alpine-based Nginx Docker Image
https://github.com/grmvoid/docker-nginx
docker docker-image docker-nginx dockerfile nginx
Last synced: 10 days ago
JSON representation
🐳 Alpine-based Nginx Docker Image
- 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-01-12T10:06:30.000Z (about 1 month ago)
- Last Synced: 2025-01-12T11:18:29.061Z (about 1 month ago)
- Topics: docker, docker-image, docker-nginx, dockerfile, nginx
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/sxbrsky/nginx
- Size: 54.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## Quick reference
- **Image based on**:
[alpine](https://hub.docker.com/_/alpine)- **Supported architectures**:
`linux/amd64`, `linux/arm64`- **Maintained by**:
[grmvoid](https://github.com/grmvoid)- **Where to file issues**:
[https://github.com/grmvoid/docker-nginx/issues](https://github.com/grmvoid/docker-nginx/issues?q=)## Supported tags and respective `Dockerfile` links
- [`1.27.3`, `1.27`](https://github.com/grmvoid/docker-nginx/blob/master/1.27/Dockerfile)
- [`1.26.2`, `1.26`](https://github.com/grmvoid/docker-nginx/blob/master/1.26/Dockerfile)
- [`1.25.5`, `1.25`](https://github.com/grmvoid/docker-nginx/blob/master/1.25/Dockerfile)## How to use this image
### start a nginx instance
```bash
docker run --name some-nginx -d grmvoid/nginx:1.27.3
```### ... via [`docker-compose`](https://github.com/docker/compose)
Example `docker-compose.yml` for `nginx`:```yaml
version: '3.1'services:
nginx:
image: grmvoid/nginx:1.27.3
restart: always
ports:
- "80:80"
```
## LICENSEView [license](https://nginx.org/LICENSE) information for the software contained in this image.