11 lines
239 B
YAML
11 lines
239 B
YAML
services:
|
|
web:
|
|
image: nginx:alpine
|
|
container_name: jekyll_blog
|
|
ports:
|
|
- '8080:80'
|
|
volumes:
|
|
- ./_site:/usr/share/nginx/html:ro
|
|
- ./nginx.conf:/etc/nginx/conf.d/default.conf:ro
|
|
restart: unless-stopped
|