Compare commits
No commits in common. "3839c174240351880d237f0627428320ddcb7fc0" and "841a252857d6fc851a68a749152b82a5a3d96c05" have entirely different histories.
3839c17424
...
841a252857
3 changed files with 4 additions and 5 deletions
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -2,6 +2,4 @@
|
||||||
"[nginx]": {
|
"[nginx]": {
|
||||||
"editor.formatOnSave": false
|
"editor.formatOnSave": false
|
||||||
},
|
},
|
||||||
"projectManager.ignoreProjectsWithinProjects": true,
|
|
||||||
"git.repositoryScanMaxDepth": 0,
|
|
||||||
}
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
FROM nginx:stable-alpine3.20
|
FROM nginx:stable-alpine3.20
|
||||||
COPY default.conf.template /etc/nginx/templates/default.conf.template
|
COPY default.conf.template /etc/nginx/templates/default.conf.template
|
||||||
|
|
||||||
RUN apk --no-cache add nodejs npm bash dumb-init git && \
|
RUN apk --no-cache add nodejs npm bash dumb-init git busybox-suid && \
|
||||||
rm -rf /var/cache/apk/*
|
rm -rf /var/cache/apk/*
|
||||||
|
|
||||||
WORKDIR /quartz
|
WORKDIR /quartz
|
||||||
|
|
|
@ -9,7 +9,8 @@ services:
|
||||||
environment:
|
environment:
|
||||||
NGINX_PORT: 8080
|
NGINX_PORT: 8080
|
||||||
SERVER_NAME: "localhost"
|
SERVER_NAME: "localhost"
|
||||||
ENABLE_CRON: "false"
|
ENABLE_CRON: "true"
|
||||||
BUILD_SCHEDULE: "*/1 * * * *"
|
BUILD_SCHEDULE: "*/1 * * * *"
|
||||||
|
CONTENT_REPO: "https://code.modernleft.org/gravityfargo/modernleft-docs.git"
|
||||||
volumes:
|
volumes:
|
||||||
- ~/Repositories/quartz:/quartz/src
|
- ./quartz:/quartz
|
||||||
|
|
Loading…
Reference in a new issue