security/README.md

30 lines
834 B
Markdown
Raw Normal View History

2024-08-13 22:25:36 +03:00
# security | MatterLinux security tracker
Soruce code of MatterLinux's security tracker, located at
2024-03-21 23:20:24 +03:00
[security.matterlinux.xyz](https://security.matterlinux.xyz)
### Deployment
Web server can be deployed with docker compose, here is an example configuration:
2024-08-13 22:25:36 +03:00
```yaml
services:
security:
container_name: mattersecurity
image: git.matterlinux.xyz/matter/security
2024-08-13 22:25:36 +03:00
ports:
- "127.0.0.1:9876:9876"
volumes:
- "./db:/app/db"
restart: unless-stopped
2024-08-13 22:25:36 +03:00
```
After saving the configuration file, you can run the docker container:
2024-03-21 23:20:24 +03:00
```bash
docker-compose up -d
```
### Adding users
After running the application at least once, you can users using
2024-08-13 22:25:36 +03:00
the `adduser.sh` script. This script will add the specified user with a
2024-03-21 23:20:24 +03:00
randomly generated passwords to the sqlite database. For example:
```bash
./adduser.sh ngn
```