working auto-update
This commit is contained in:
parent
6e6d5a540d
commit
9e690b9069
13
Dockerfile
13
Dockerfile
|
@ -2,8 +2,13 @@ FROM ghcr.io/getzola/zola:v0.17.1 as zola
|
|||
|
||||
COPY . /project
|
||||
WORKDIR /project
|
||||
RUN ["zola", "build"]
|
||||
|
||||
FROM ghcr.io/static-web-server/static-web-server:2
|
||||
WORKDIR /
|
||||
COPY --from=zola /project/public /public
|
||||
ENV PATH="/usr/local/bin:${PATH}"
|
||||
|
||||
CMD ["serve", "--interface", "0.0.0.0", "--port", "80", "--base-url", "codicam.penwing.org"]
|
||||
|
||||
#RUN ["zola", "build"]
|
||||
|
||||
#FROM ghcr.io/static-web-server/static-web-server:2
|
||||
#WORKDIR /
|
||||
#COPY --from=zola /project/public /public
|
||||
|
|
BIN
content/codicam/.flatnotes/4_0p5i1sd28b0kwnhq.seg
Normal file
BIN
content/codicam/.flatnotes/4_0p5i1sd28b0kwnhq.seg
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -8,6 +8,8 @@ on fait plein de trucs vachements cools
|
|||
|
||||
# Projets
|
||||
|
||||
avec des gens super géniaux
|
||||
|
||||
## Truc cool
|
||||
|
||||
[lien](@/codicam/truccool.md)
|
||||
|
|
|
@ -8,6 +8,8 @@ on fait plein de trucs vachements cools
|
|||
|
||||
# Projets
|
||||
|
||||
Big up au général Kenobiiiiiii
|
||||
|
||||
## Truc cool
|
||||
|
||||
[lien](@/roboticam/truccool.md)
|
||||
|
|
|
@ -5,6 +5,11 @@ services:
|
|||
dockerfile: Dockerfile
|
||||
ports:
|
||||
- "8001:80"
|
||||
volumes:
|
||||
- ./content:/project/content
|
||||
- ./templates:/project/templates
|
||||
- ./static:/project/static
|
||||
- ./sass:/project/sass
|
||||
restart: unless-stopped
|
||||
|
||||
edit-codicam:
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
<title>{{ config.title }}</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="description" content="Icam assoss">
|
||||
<link rel="stylesheet" href="{{ get_url(path="style.css") | safe }}">
|
||||
<link rel="icon" href="{{ get_url(path="icon.png") | safe }}" type="image/png">
|
||||
<link rel="stylesheet" href="https://codicam.penwing.org/style.css">
|
||||
<link rel="icon" href="https://codicam.penwing.org/icon.png" type="image/png">
|
||||
</head>
|
||||
<body>
|
||||
<div class="sidenav">
|
||||
|
|
Loading…
Reference in a new issue