You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm setting my repo up using docker with colima on macos 26.3. I've managed to the server up and running (after a multitude of other issues) but right now when i change the content it's not reflecting even when i force reload it, the only way to get it to reflect is to restart the entire container. Any clues on how I should fix this? Here are my current config and docker-compose files below:
comfig.yml
# -----------------------------------------------------------------------------# Site settings# -----------------------------------------------------------------------------title: blank # the website title (if blank, full name will be used instead)first_name: Faisalmiddle_name:
last_name: Albasucontact_note: > You can even add a little note about which of these is the best way to reach you.description: > # the ">" symbol means to ignore newlines until "footer_text:" A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.footer_text: > Powered by <a href="https://jekyllrb.com/" target="_blank">Jekyll</a> with <a href="https://github.com/alshedivat/al-folio">al-folio</a> theme. Hosted by <a href="https://pages.github.com/" target="_blank">GitHub Pages</a>. Photos from <a href="https://unsplash.com" target="_blank">Unsplash</a>.keywords: jekyll, jekyll-theme, academic-website, portfolio-website # add your own keywords or leave emptylang: en # the language of your site (for example: en, fr, cn, ru, etc.)icon: ⚛️ # the emoji used as the favicon (alternatively, provide image name in /assets/img/)url: https://albas99.github.io # the base hostname & protocol for your sitebaseurl: ""# the subpath of your site, e.g. /blog/. Leave blank for rootlast_updated: false # set to true if you want to display last updated in the footerimpressum_path: # set to path to include impressum link in the footer, use the same path as permalink in a page, helps to conform with EU GDPRback_to_top: true # set to false to disable the back to top button
docker-compose.yml
# this file uses prebuilt image in dockerhubservices:
jekyll:
image: amirpourmand/al-folio:v0.16.3build: .# uncomment these if you are having this issue with the build:# /usr/local/bundle/gems/jekyll-4.3.4/lib/jekyll/site.rb:509:in `initialize': Permission denied @ rb_sysopen - /srv/jekyll/.jekyll-cache/.gitignore (Errno::EACCES)# and fill the args values with the output of the commands on the right# build:# args:# GROUPID: # id -g# GROUPNAME: # id -gn# USERID: # id -u# USERNAME: # echo $USERcommand: > bundle exec jekyll serve --watch --force-polling --livereload --host 0.0.0.0 --port 8081ports:
- 8081:8081
- 35729:35729volumes:
- .:/srv/jekyllenvironment:
- JEKYLL_ENV=development```
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I'm setting my repo up using docker with colima on macos 26.3. I've managed to the server up and running (after a multitude of other issues) but right now when i change the content it's not reflecting even when i force reload it, the only way to get it to reflect is to restart the entire container. Any clues on how I should fix this? Here are my current config and docker-compose files below:
comfig.yml
docker-compose.yml
Beta Was this translation helpful? Give feedback.
All reactions