Compare commits

..

3 commits
v0.1.0 ... main

Author SHA1 Message Date
215a608599 Fix Dockerfile to copy from public directory 2026-01-03 11:57:42 +01:00
758c86cfec Add Dockerfile for multi-arch builds 2026-01-03 11:54:56 +01:00
myrmidex
d54a8340a8 Update README.md 2025-08-01 23:59:26 +02:00
2 changed files with 26 additions and 0 deletions

3
Dockerfile Normal file
View file

@ -0,0 +1,3 @@
FROM nginx:alpine
COPY public/ /usr/share/nginx/html/
EXPOSE 80

View file

@ -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
```