We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Content displays just fine
using your docker-compose setup. Volumes work file. I can change in docker container, and files show up on host
Set environment:
When I make changes to {content,static,themes} nothing happens.
Below is my docker-compose version: '3.1'
services: web: image: jojomi/hugo:0.55.0 environment: - HUGO_WATCH=true - HUGO_REFRESH_TIME=10 - HUGO_THEME=beautifulhugo - HUGO_BASEURL=localhost volumes: - ${PWD}/src:/src - ${PWD}/output/:/output ports: - "1313:1313" restart: always nginx: image: jojomi/nginx-static volumes: - ${PWD}/output:/var/www ports: - "8080:80" restart: always
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Content displays just fine
using your docker-compose setup. Volumes work file. I can change in docker container, and files show up on host
Set
environment:
When I make changes to {content,static,themes} nothing happens.
Below is my docker-compose
version: '3.1'
services:
web:
image: jojomi/hugo:0.55.0
environment:
- HUGO_WATCH=true
- HUGO_REFRESH_TIME=10
- HUGO_THEME=beautifulhugo
- HUGO_BASEURL=localhost
volumes:
- ${PWD}/src:/src
- ${PWD}/output/:/output
ports:
- "1313:1313"
restart: always
nginx:
image: jojomi/nginx-static
volumes:
- ${PWD}/output:/var/www
ports:
- "8080:80"
restart: always
The text was updated successfully, but these errors were encountered: