mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-25 01:34:36 +01:00
14 lines
282 B
YAML
14 lines
282 B
YAML
|
---
|
||
|
services:
|
||
|
nginx:
|
||
|
image: nginx:1.25.5-alpine
|
||
|
container_name: nginx
|
||
|
ports:
|
||
|
- 80:80
|
||
|
- 443:443
|
||
|
volumes:
|
||
|
- ./config/nginx.conf:/etc/nginx/nginx.conf
|
||
|
- ./certs:/etc/nginx/certs
|
||
|
- ./data:/usr/share/nginx/html
|
||
|
restart: unless-stopped
|