2023-12-09 16:25:38 +00:00
|
|
|
# website | Matterlinux Website
|
|
|
|
Soruce code of Matterlinux's offical website, which is
|
2023-12-09 16:27:37 +00:00
|
|
|
hosted at [matterlinux.xyz](https://matterlinux.xyz)
|
2023-12-09 16:25:38 +00:00
|
|
|
|
|
|
|
## Deployment
|
|
|
|
Website can be built and deployed with docker:
|
|
|
|
```
|
|
|
|
docker build --tag matterwebsite .
|
|
|
|
docker run -d --name matterweb \
|
|
|
|
-p 127.0.0.1:9878:9878 \
|
|
|
|
-v $PWD/web-content:/app/content \
|
|
|
|
matterwebsite
|
|
|
|
```
|