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
Copy file name to clipboardExpand all lines: Dockerfile
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ RUN ./bootstrap_setup.sh
41
41
42
42
RUN mkdir /site/
43
43
WORKDIR /site/
44
-
COPY . .
45
44
46
45
EXPOSE 4000
46
+
# Note --incremental mode is ineffective on the Mac owing to https://github.com/containers/podman/issues/22343. Use force_regenerate.sh to trigger the incremental reload after changing the file on the host.
Copy file name to clipboardExpand all lines: run.sh
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,8 @@
1
1
#!/bin/bash
2
+
# Runs the Kroxylicious website locally, for development purposes, within a container.
3
+
# Point your browser at http://localhost:4000
4
+
#
5
+
# Jekyll is run on incremental mode so changes made to the host filesystem should be soon visible in your browser. Note however incremental mode won't work on Mac OS X (owing to http://github.com/containers/podman/issues/22343). Use the force_regenerate.sh to trigger the incremental reload after the edit is made on the host.
0 commit comments