13 lines
302 B
YAML
13 lines
302 B
YAML
version: "3"
|
|
|
|
services:
|
|
static-web:
|
|
image: gitea.proxy.liyanyan.work/liyy/static-web:latest
|
|
container_name: static-web
|
|
ports:
|
|
- "8080:80"
|
|
volumes:
|
|
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf:rw
|
|
- ./site:/usr/share/nginx/html:ro
|
|
restart: unless-stopped
|