Skip to content

Commit ea02b09

Browse files
committed
Release 1.0.0 - See CHANGELOG.md
1 parent a0d9149 commit ea02b09

20 files changed

Lines changed: 411 additions & 0 deletions

.dockerignore

Whitespace-only changes.

.github/.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
examples/

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [tiredofit]
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
name: Bug report
3+
about: If something isn't working right..
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
### Summary
11+
12+
<!-- Summarize the bug encountered -->
13+
14+
15+
### Steps to reproduce
16+
17+
<!-- Describe how one can reproduce the issue - this is very important. Please use an ordered list. -->
18+
19+
20+
### What is the expected *correct* behavior?
21+
22+
<!-- Describe what should be seen instead. -->
23+
24+
25+
### Relevant logs and/or screenshots
26+
27+
<!-- Paste any relevant logs - please use code blocks (```) to format console output, logs, and code as it's tough to read otherwise. -->
28+
29+
### Environment
30+
<!--Your Configuration (please complete the following information): -->
31+
32+
- Image version / tag:
33+
- Host OS:
34+
35+
<details>
36+
<summary>Any logs | docker-compose.yml</summary>
37+
</details>
38+
39+
<!-- Include anything additional -->
40+
41+
### Possible fixes
42+
<!-- If you can, provide details to the root cause that might be responsible for the problem. -->
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea or feature
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
---
11+
name: Feature Request
12+
about: Suggest an idea for this project
13+
14+
---
15+
16+
**Description of the feature**
17+
<!-- A clear description of the feature you'd like implemented -->
18+
19+
**Benftits of feature**
20+
<!-- Explain the measurable benefits this feature would achieve. -->
21+
22+
**Additional context**
23+
<!--Add any other context or screenshots about the feature request here. -->

.github/workflows/main.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: "build_image"
2+
3+
on:
4+
push:
5+
paths:
6+
- "**"
7+
- "!README.md"
8+
9+
jobs:
10+
build:
11+
uses: tiredofit/github_actions/.github/workflows/default_amd64.yml@main
12+
#uses: tiredofit/github_actions/.github/workflows/default_amd64.yml@main
13+
#uses: tiredofit/github_actions/.github/workflows/default_amd64_armv7_arm64.yml@main
14+
#uses: tiredofit/github_actions/.github/workflows/default_amd64_arm64.yml@main
15+
secrets: inherit

.github/workflows/manual.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "manual_build_image"
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
Manual Build:
7+
description: 'Manual Build'
8+
required: false
9+
10+
jobs:
11+
build:
12+
uses: tiredofit/github_actions/.github/workflows/default_amd64.yml@main
13+
#uses: tiredofit/github_actions/.github/workflows/default_amd64.yml@main
14+
#uses: tiredofit/github_actions/.github/workflows/default_amd64_armv7_arm64.yml@main
15+
#uses: tiredofit/github_actions/.github/workflows/default_amd64_arm64.yml@main
16+
secrets: inherit

.gitignore

Whitespace-only changes.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## 1.0.0 2023-04-05 <dave at tiredofit dot ca>
2+
3+
### Added
4+
- Initial Release
5+
- Supporting Synapse HomeServer
6+
- Supporting Matrix Media Repo
7+
- Support locking out access to Synapse Admin Endpoint
8+
- Support Proxying logout to Matrix Media Repo
9+
10+

Dockerfile

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
ARG DISTRO=alpine
2+
ARG DISTRO_VARIANT=3.17
3+
4+
FROM docker.io/tiredofit/nginx:${DISTRO}-${DISTRO_VARIANT}
5+
LABEL maintainer="Dave Conroy (github.com/tiredofit)"
6+
7+
ENV NGINX_SITE_ENABLED=matrix-proxy \
8+
NGINX_WORKER_PROCESSES=1 \
9+
NGINX_ENABLE_CREATE_SAMPLE_HTML=FALSE \
10+
IMAGE_NAME="tiredofit/matrix-proxy" \
11+
IMAGE_REPO_URL="https://github.com/tiredofit/docker-matrix-proxy/"
12+
13+
RUN source assets/functions/00-container && \
14+
set -x && \
15+
\
16+
package update && \
17+
package upgrade && \
18+
package cleanup
19+
20+
COPY install /
21+

0 commit comments

Comments
 (0)