dockerconfig/docker-compose.yaml

12 lines
208 B
YAML
Raw Normal View History

2022-10-29 12:07:29 +02:00
version: "3.5"
services:
blog:
container_name: personal-blog
2022-11-13 17:58:23 +01:00
image: nginx:alpine
2022-11-13 12:36:43 +01:00
volumes:
2022-11-13 17:58:23 +01:00
- ./config/hugo/public:/usr/share/nginx/html:ro,z
restart: always
ports:
- 6262:80