19 lines
376 B
YAML
19 lines
376 B
YAML
version: '3'
|
|
|
|
services:
|
|
|
|
# https://mac-blog.org.ua/docker-nginx-shell-script/
|
|
# chmod +x html/*.sh
|
|
|
|
nginx-bash:
|
|
build:
|
|
context: ./
|
|
dockerfile: Dockerfile
|
|
image: nginx-bash
|
|
container_name: nginx-bash
|
|
restart: always
|
|
ports:
|
|
- 8081:80
|
|
volumes:
|
|
- ./html:/usr/share/nginx/html
|
|
- ./default.conf:/etc/nginx/conf.d/default.conf |