Update README.md
This commit is contained in:
parent
057e800b1b
commit
d54a8340a8
1 changed files with 23 additions and 0 deletions
23
README.md
23
README.md
|
|
@ -1,5 +1,20 @@
|
||||||
# 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:
|
||||||
|
|
@ -7,3 +22,11 @@ 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
|
||||||
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue