mirror of
https://github.com/lleene/dockerconfig.git
synced 2025-01-22 21:02:22 +01:00
12 lines
208 B
YAML
12 lines
208 B
YAML
version: "3.5"
|
|
|
|
services:
|
|
blog:
|
|
container_name: personal-blog
|
|
image: nginx:alpine
|
|
volumes:
|
|
- ./config/hugo/public:/usr/share/nginx/html:ro,z
|
|
restart: always
|
|
ports:
|
|
- 6262:80
|