12 lines
198 B
YAML
12 lines
198 B
YAML
version: "3.3"
|
|
|
|
services:
|
|
blog:
|
|
container_name: blog
|
|
restart: unless-stopped
|
|
image: nginx:1.16.0-alpine
|
|
volumes:
|
|
- "./public:/usr/share/nginx/html/"
|
|
expose:
|
|
- "80"
|