linkr/README.md

32 lines
595 B
Markdown
Raw Normal View History

2023-11-16 21:46:09 +11:00
# linkr
2023-11-17 00:06:02 +11:00
### Deployment
```
version: '3'
services:
main:
image: git.woodburn.au/nathanwoodburn/linkr:latest
depends_on:
- db
environment:
DB_HOST: db
DB_USER: main
DB_PASSWORD: your-db-password
DB_NAME: main
WORKERS: 2 # number of workers to run (should be 2 * number of cores)
db:
image: linuxserver/mariadb:latest
environment:
MYSQL_ROOT_PASSWORD: your-root-password
MYSQL_DATABASE: main
MYSQL_USER: main
MYSQL_PASSWORD: your-db-password
volumes:
- db_data:/var/lib/mysql
volumes:
db_data:
```