This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ACTOR_PEM: /var/lib/relay/actor.pem | |
REDIS_URL: redis://redis:6379 | |
RELAY_BIND: 0.0.0.0:8089 | |
RELAY_DOMAIN: relay.ie9.org | |
RELAY_SERVICENAME: Relay Service - relay.ie9.org | |
JOB_CONCURRENCY: 50 | |
#RELAY_SUMMARY: | | |
RELAY_ICON: https://upload.wikimedia.org/wikipedia/commons/2/25/Google_Podcasts_icon.svg | |
RELAY_IMAGE: https://upload.wikimedia.org/wikipedia/commons/2/25/Google_Podcasts_icon.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# folder: ./elasticsearch | |
# Password for the 'elastic' user (at least 6 characters) | |
ELASTIC_PASSWORD= | |
# Version of Elastic products | |
STACK_VERSION=8.15.2 | |
# Set the cluster name | |
CLUSTER_NAME=es-mastodon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pykeepass import PyKeePass | |
import re | |
import csv | |
class Keepass(object): | |
def __init__(self, database, password): | |
self.kp = PyKeePass(database, password=password) | |
def all_entries(self, group='Logins'): | |
g = self.add_group(group=group) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
minio: | |
image: quay.io/minio/minio | |
container_name: minio | |
restart: unless-stopped | |
env_file: minio.env | |
command: server --console-address ":9001" /data | |
ports: |