Handshake link shortener
https://linkr
Nathan Woodburn
73ef222feb
All checks were successful
Build Docker / Build Main Image (push) Successful in 19s
|
||
---|---|---|
.gitea/workflows | ||
templates | ||
.gitignore | ||
account.py | ||
db.py | ||
Dockerfile | ||
LICENSE.md | ||
main.py | ||
README.md | ||
render.py | ||
requirements.txt | ||
server.py | ||
varo_auth.py |
linkr
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
DNS_SERVER: 10.1.1.2
DNS_SERVER_PORT: 5350
ADMIN_DOMAIN: nathan.woodburn
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: