DAM-static-site/docker-compose.yml
peskyadmin cf7d23f3d4
Some checks are pending
Deploy Hugo site to Pages / build (push) Waiting to run
Deploy Hugo site to Pages / deploy (push) Blocked by required conditions
update host port to 8080
2025-03-25 22:22:47 -04:00

14 lines
308 B
YAML

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