Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
28 lines
417 B
Markdown
28 lines
417 B
Markdown
# lvl0 Website
|
|
|
|
## Production
|
|
|
|
This is the docker-compose file needed to host this webiste:
|
|
|
|
```
|
|
services:
|
|
website:
|
|
image: forge.lvl0.xyz/lvl0/lvl0-website:latest
|
|
container_name: lvl0-website
|
|
ports:
|
|
- 5002:80
|
|
restart: unless-stopped
|
|
networks: {}
|
|
```
|
|
|
|
## Development
|
|
|
|
Run zola:
|
|
|
|
```sh
|
|
zola serve
|
|
```
|
|
|
|
### Docker build
|
|
|
|
Docker images are built automatically via Forgejo Actions on push to main.
|