15 lines
344 B
YAML
15 lines
344 B
YAML
version: '3.8'
|
|
services:
|
|
static-site:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: my-hugo-app:production
|
|
container_name: static-site
|
|
ports:
|
|
- "8080:80"
|
|
restart: unless-stopped
|
|
environment:
|
|
- NGINX_PORT=80
|
|
# volumes:
|
|
# - ./public:/usr/share/nginx/html:ro # Optional, for debugging |