mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
13 lines
274 B
YAML
13 lines
274 B
YAML
version: "3.9"
|
|
services:
|
|
nginx:
|
|
image: nginx:alpine
|
|
ports:
|
|
- "81:80"
|
|
# - "443:443"
|
|
volumes:
|
|
- ./conf.d/:/etc/nginx/conf.d:ro
|
|
- /etc/timezone:/etc/timezone:ro
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- ./docs:/usr/share/nginx/html
|