From d54a8340a8f53cf8461aa6ebf0f1c70a26ec3bfc Mon Sep 17 00:00:00 2001 From: myrmidex Date: Fri, 1 Aug 2025 23:59:26 +0200 Subject: [PATCH] Update README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 835c562..7eea17f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,20 @@ # lvl0 Website +## Production + +This is the docker-compose file needed to host this webiste: + +``` +services: + website: + image: codeberg.org/lvl0/website:latest + container_name: lvl0-website + ports: + - 5002:80 + restart: unless-stopped +networks: {} +``` + ## Development Run zola: @@ -7,3 +22,11 @@ Run zola: ```sh zola serve ``` + +### Docker build + +To build a docker image after changes, use + +```sh +sh .docker/build-docker.sh v0.1.0 +```