mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-22 08:13:18 +01:00
14 lines
346 B
YAML
14 lines
346 B
YAML
---
|
|
services:
|
|
nginx:
|
|
image: docker.io/library/nginx:1.26.2-alpine
|
|
container_name: nginx
|
|
ports:
|
|
- 80:80
|
|
# (optional) uncomment the line below to enable HTTPS
|
|
# - 443:443
|
|
volumes:
|
|
- ./config/default.conf:/etc/nginx/conf.d/default.conf:ro
|
|
- ./data:/usr/share/nginx/html:ro
|
|
restart: unless-stopped
|