This commit is contained in:
2024-01-22 15:06:22 +08:00
commit e447ee079b

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
version: "3"
services:
nginx:
image: nginx
container_name: blog
ports:
- "8010:80"
restart: always
volumes:
- ./data:/usr/share/nginx/html
environment:
- NGINX_HOST=blog.awin.one
- NGINX_PORT=80