11 lines
232 B
YAML
11 lines
232 B
YAML
services:
|
|
nginx:
|
|
image: nginx:alpine
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./html:/usr/share/nginx/html:ro
|
|
- ./conf/nginx.conf:/etc/nginx/nginx.conf:ro
|
|
expose:
|
|
- "80"
|
|
ports:
|
|
- "25565:25565" |