11 lines
197 B
YAML
11 lines
197 B
YAML
|
|
version: '3'
|
||
|
|
services:
|
||
|
|
nginx:
|
||
|
|
image: nginx:1.27.2-alpine
|
||
|
|
ports:
|
||
|
|
- "80:80"
|
||
|
|
- "443:443"
|
||
|
|
volumes:
|
||
|
|
- ./data/nginx:/etc/nginx/conf.d
|
||
|
|
certbot:
|
||
|
|
image: certbot/certbot
|