archive
This commit is contained in:
3
cypht/build_and_run.sh
Executable file
3
cypht/build_and_run.sh
Executable file
@@ -0,0 +1,3 @@
|
||||
#! /bin/bash
|
||||
|
||||
docker compose up
|
||||
26
cypht/docker-compose.yaml
Executable file
26
cypht/docker-compose.yaml
Executable file
@@ -0,0 +1,26 @@
|
||||
version: '3'
|
||||
services:
|
||||
db:
|
||||
image: mariadb:10
|
||||
volumes:
|
||||
- ./db:/var/lib/mysql
|
||||
environment:
|
||||
- MYSQL_ROOT_PASSWORD=root_password
|
||||
- MYSQL_DATABASE=cypht
|
||||
- MYSQL_USER=cypht
|
||||
- MYSQL_PASSWORD=cypht_password
|
||||
cypht:
|
||||
image: sailfrog/cypht-docker:latest
|
||||
volumes:
|
||||
- ./cypht/users:/var/lib/hm3/users
|
||||
ports:
|
||||
- "8344:80"
|
||||
environment:
|
||||
- CYPHT_AUTH_USERNAME=admin
|
||||
- CYPHT_AUTH_PASSWORD=admin_password
|
||||
- CYPHT_DB_CONNECTION_TYPE=host
|
||||
- CYPHT_DB_HOST=db
|
||||
- CYPHT_DB_NAME=cypht
|
||||
- CYPHT_DB_USER=cypht
|
||||
- CYPHT_DB_PASS=cypht_password
|
||||
- CYPHT_SESSION_TYPE=DB
|
||||
3
cypht/review
Executable file
3
cypht/review
Executable file
@@ -0,0 +1,3 @@
|
||||
doesnt work with gmail and quite slow
|
||||
|
||||
does work with app passwords, slow because of additional are-you-sure, does techinally hit all marks with 0 frill
|
||||
Reference in New Issue
Block a user