17 lines
305 B
YAML
17 lines
305 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"
|
|
networks:
|
|
- proxynet
|
|
|
|
networks:
|
|
proxynet:
|
|
external: true |