1 Commits

Author SHA1 Message Date
aa49e60b9d adds Mastodon profile
All checks were successful
ci/woodpecker/push/renovate Pipeline was successful
ci/woodpecker/pr/renovate Pipeline was successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/next Pipeline was successful
ci/woodpecker/push/master Pipeline was successful
ci/woodpecker/pr/test Pipeline was successful
ci/woodpecker/pr/master Pipeline was successful
ci/woodpecker/pr/next Pipeline was successful
2023-01-24 22:43:02 +01:00
5 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ RUN npm install \
FROM nginx:1.23.3-alpine as prod
LABEL maintainer="marco.blessing@googlemail.com"
#HEALTHCHECK --interval=15s --timeout=5s \
# CMD wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1
HEALTHCHECK --interval=15s --timeout=5s \
CMD wget --no-verbose --tries=1 --spider http://localhost:80/ || exit 1
COPY --from=builder src/public /usr/share/nignx/html/
COPY nginx.conf /etc/nginx/nginx.conf

View File

@ -43,4 +43,4 @@ The next tag is used for testing any code changes on development branches and pu
This image contains the hugo based sources for my personal blog. It's made with the [Congo theme](https://github.com/jpanther/congo). The static pages are served by the included nginx server with a custom config. The custom config is needed to redirect 404 errors to a custom page.
You can simply run the container with `docker run -it --rm -p "8080:80" ocram85/blog:latest`.
You can simply run the container with `docker run -it --rm -p "8080:80" ocram85/blog:latest`

View File

@ -38,7 +38,7 @@ dateFormat = "2 January 2006"
# { kickstarter = "https://www.kickstarter.com/profile/username" },
# { lastfm = "https://lastfm.com/user/username" },
{ linkedin = "https://linkedin.com/in/marco-blessing-884642109" },
# { mastodon = "https://mastodon.instance/@username" },
{ mastodon = "https://social.anoxinon.de/@OCram85" },
# { medium = "https://medium.com/username" },
# { microsoft = "https://www.microsoft.com/" },
# { patreon = "https://www.patreon.com/username" },

View File

@ -5,7 +5,7 @@ http {
include mime.types;
server {
listen 0.0.0.0:80;
listen 80;
root /usr/share/nignx/html;
index index.html;
error_page 404 /404.html;

View File

@ -29,7 +29,7 @@
"exec-bin": "^1.0.0",
"hugo-installer": "^4.0.0",
"markdownlint-cli": "^0.33.0",
"rimraf": "^5.0.0"
"rimraf": "^4.0.0"
},
"otherDependencies": {
"hugo": "0.91.1"