2025-07-10 20:08:34 +02:00
|
|
|
# lvl0 Website
|
|
|
|
|
|
2025-08-01 23:59:26 +02:00
|
|
|
## Production
|
|
|
|
|
|
|
|
|
|
This is the docker-compose file needed to host this webiste:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
services:
|
|
|
|
|
website:
|
2026-03-01 21:03:37 +01:00
|
|
|
image: forge.lvl0.xyz/lvl0/lvl0-website:latest
|
2025-08-01 23:59:26 +02:00
|
|
|
container_name: lvl0-website
|
|
|
|
|
ports:
|
|
|
|
|
- 5002:80
|
|
|
|
|
restart: unless-stopped
|
|
|
|
|
networks: {}
|
|
|
|
|
```
|
|
|
|
|
|
2025-07-10 20:08:34 +02:00
|
|
|
## Development
|
|
|
|
|
|
|
|
|
|
Run zola:
|
|
|
|
|
|
|
|
|
|
```sh
|
|
|
|
|
zola serve
|
|
|
|
|
```
|
2025-08-01 23:59:26 +02:00
|
|
|
|
|
|
|
|
### Docker build
|
|
|
|
|
|
2026-03-01 21:03:37 +01:00
|
|
|
Docker images are built automatically via Forgejo Actions on push to main.
|