mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
11 lines
241 B
YAML
11 lines
241 B
YAML
version: "3.8"
|
|
services:
|
|
openresty:
|
|
image: openresty/openresty:alpine
|
|
ports:
|
|
- "8000:80"
|
|
volumes:
|
|
- ./data/conf.d:/etc/nginx/conf.d
|
|
- ./data/lualib:/usr/local/openresty/site/lualib
|
|
restart: unless-stopped
|