Compare commits

..

No commits in common. "main" and "v0.1.0" have entirely different histories.
main ... v0.1.0

2 changed files with 0 additions and 26 deletions

View file

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

View file

@ -1,20 +1,5 @@
# lvl0 Website # 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 ## Development
Run zola: Run zola:
@ -22,11 +7,3 @@ Run zola:
```sh ```sh
zola serve zola serve
``` ```
### Docker build
To build a docker image after changes, use
```sh
sh .docker/build-docker.sh v0.1.0
```