Skip to content

Commit 7330a6e

Browse files
authored
Merge pull request #2 from pythonitalia/update
Merge latest main
2 parents 91d7069 + 2431db0 commit 7330a6e

6 files changed

Lines changed: 151 additions & 186 deletions

File tree

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "docker"
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"

Caddyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
# }
1212

1313
reverse_proxy :3000
14-
reverse_proxy /api/v1/streaming :4000
14+
reverse_proxy /api/v1/streaming/* :4000

Dockerfile

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
1-
FROM tootsuite/mastodon-streaming:v4.3.7 as streaming
1+
FROM tootsuite/mastodon-streaming:v4.4 as streaming
22

3-
FROM tootsuite/mastodon:v4.3.7
3+
FROM tootsuite/mastodon:v4.4
44

55
USER root
6+
67
RUN mkdir -p /var/cache/apt/archives/partial && \
78
apt-get clean && \
89
apt-get update && \
910
apt-get install -y --no-install-recommends tmux nodejs
1011

11-
RUN wget "https://github.com/caddyserver/caddy/releases/download/v2.6.2/caddy_2.6.2_linux_amd64.deb" -O caddy.deb && \
12+
# Releases: https://github.com/caddyserver/caddy/releases/
13+
RUN wget "https://github.com/caddyserver/caddy/releases/download/v2.8.4/caddy_2.8.4_linux_amd64.deb" -O caddy.deb && \
1214
dpkg -i caddy.deb
1315

1416
USER mastodon
15-
RUN wget "https://github.com/DarthSim/overmind/releases/download/v2.3.0/overmind-v2.3.0-linux-amd64.gz" -O overmind.gz && \
17+
18+
# Releases: https://github.com/DarthSim/overmind/releases
19+
RUN wget "https://github.com/DarthSim/overmind/releases/download/v2.5.1/overmind-v2.5.1-linux-amd64.gz" -O overmind.gz && \
1620
gunzip overmind.gz && \
1721
chmod +x overmind
1822

0 commit comments

Comments
 (0)