diff --git a/blueprints/bytestash/docker-compose.yml b/blueprints/bytestash/docker-compose.yml new file mode 100644 index 00000000..3fa7e037 --- /dev/null +++ b/blueprints/bytestash/docker-compose.yml @@ -0,0 +1,27 @@ +version: '3.8' + +services: + bytestash: + image: ghcr.io/jordan-dalby/bytestash:1.5.6 + restart: unless-stopped + ports: + - "5000" + environment: + - BASE_PATH= + - JWT_SECRET=${JWT_SECRET} + - TOKEN_EXPIRY=24h + - ALLOW_NEW_ACCOUNTS=true + - DEBUG=true + - DISABLE_ACCOUNTS=false + - DISABLE_INTERNAL_ACCOUNTS=false + - OIDC_ENABLED=false + - OIDC_DISPLAY_NAME= + - OIDC_ISSUER_URL= + - OIDC_CLIENT_ID= + - OIDC_CLIENT_SECRET= + - OIDC_SCOPES= + volumes: + - snippets:/data/snippets + +volumes: + snippets: \ No newline at end of file diff --git a/blueprints/bytestash/logo.png b/blueprints/bytestash/logo.png new file mode 100644 index 00000000..aa44dff1 Binary files /dev/null and b/blueprints/bytestash/logo.png differ diff --git a/blueprints/bytestash/template.toml b/blueprints/bytestash/template.toml new file mode 100644 index 00000000..07e509bb --- /dev/null +++ b/blueprints/bytestash/template.toml @@ -0,0 +1,11 @@ +[variables] +jwt_secret = "${password:32}" + +[config] +[[config.domains]] +serviceName = "bytestash" +port = 5000 +host = "${domain}" + +[config.env] +JWT_SECRET = "${jwt_secret}" \ No newline at end of file