Merge branch 'main' of ssh://synth.download:10429/sd/synth.download
This commit is contained in:
commit
618e9c1d50
16 changed files with 449 additions and 2 deletions
|
|
@ -4,8 +4,8 @@ After=network-online.target
|
|||
Wants=network-online.target
|
||||
|
||||
[Container]
|
||||
AddCapability=NET_ADMIN
|
||||
ContainerName=caddy
|
||||
AddCapability=NET_ADMIN
|
||||
Image=ghcr.io/zenfyrdev/caddy:latest
|
||||
Network=host
|
||||
Volume=/etc/caddy:/etc/caddy:z
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
Description=Mastodon Dragonfly DB
|
||||
|
||||
[Container]
|
||||
ContainerName=mastodon-dfdb
|
||||
Image=docker.dragonflydb.io/dragonflydb/dragonfly
|
||||
ContainerName=mastodon-dfdb
|
||||
Environment=DFLY_snapshot_cron="* * * * *"
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ Requires=postgresql.service mastodon-dfdb.service
|
|||
After=postgresql.service mastodon-dfdb.service
|
||||
|
||||
[Container]
|
||||
ContainerName=mastodon-ingress
|
||||
Image=ghcr.io/synth-download/mastodon-ingress:nightly
|
||||
ContainerName=mastodon-ingress
|
||||
EnvironmentFile=/var/containers/mastodon/.env.secrets
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ Requires=postgresql.service mastodon-dfdb.service
|
|||
After=postgresql.service mastodon-dfdb.service
|
||||
|
||||
[Container]
|
||||
ContainerName=mastodon-sidekiq
|
||||
Image=ghcr.io/synth-download/mastodon:nightly
|
||||
ContainerName=mastodon-sidekiq
|
||||
EnvironmentFile=/var/containers/mastodon/.env.secrets
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ Requires=postgresql.service mastodon-dfdb.service
|
|||
After=postgresql.service mastodon-dfdb.service
|
||||
|
||||
[Container]
|
||||
ContainerName=mastodon-streaming
|
||||
Image=ghcr.io/synth-download/mastodon-streaming:nightly
|
||||
ContainerName=mastodon-streaming
|
||||
EnvironmentFile=/var/containers/mastodon/.env.secrets
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ Requires=postgresql.service mastodon-dfdb.service
|
|||
After=postgresql.service mastodon-dfdb.service
|
||||
|
||||
[Container]
|
||||
ContainerName=mastodon-web
|
||||
Image=ghcr.io/synth-download/mastodon:nightly
|
||||
ContainerName=mastodon-web
|
||||
EnvironmentFile=/var/containers/mastodon/.env.secrets
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
Description=PostgreSQL Database
|
||||
|
||||
[Container]
|
||||
ContainerName=postgresql
|
||||
Image=registry.hub.docker.com/groonga/pgroonga:latest-alpine-18
|
||||
ContainerName=postgresql
|
||||
EnvironmentFile=/var/containers/postgresql/.env
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ Requires=postgresql.service sharkey-dfdb.service
|
|||
Wants=network-online.target
|
||||
|
||||
[Container]
|
||||
ContainerName=sharkey-activity
|
||||
Image=registry.activitypub.software/transfem-org/sharkey:develop
|
||||
Environment=MISSKEY_CONFIG_YML=*.yml
|
||||
Environment=MISSKEY_CONFIG_DIR=/sharkey/.config
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ Requires=postgresql.service sharkey-dfdb.service
|
|||
Wants=network-online.target
|
||||
|
||||
[Container]
|
||||
ContainerName=sharkey-api
|
||||
Image=registry.activitypub.software/transfem-org/sharkey:develop
|
||||
Environment=MISSKEY_CONFIG_YML=*.yml
|
||||
Environment=MISSKEY_CONFIG_DIR=/sharkey/.config
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
Description=Sharkey's DragonflyDB process
|
||||
|
||||
[Container]
|
||||
Environment="DFLY_snapshot_cron=* * * * *"
|
||||
ContainerName=sharkey-dfdb
|
||||
Environment=DFLY_snapshot_cron="* * * * *"
|
||||
Environment=DFLY_version_check=false
|
||||
Environment=DFLY_default_lua_flags=allow-undeclared-keys
|
||||
Environment=DFLY_dbfilename=dump.rdb
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ Requires=postgresql.service sharkey-dfdb.service
|
|||
Wants=network-online.target
|
||||
|
||||
[Container]
|
||||
ContainerName=sharkey-media
|
||||
Image=registry.activitypub.software/transfem-org/sharkey:develop
|
||||
Environment=MISSKEY_CONFIG_YML=*.yml
|
||||
Environment=MISSKEY_CONFIG_DIR=/sharkey/.config
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ Requires=postgresql.service sharkey-dfdb.service
|
|||
Wants=network-online.target
|
||||
|
||||
[Container]
|
||||
ContainerName=sharkey-worker
|
||||
Image=registry.activitypub.software/transfem-org/sharkey:develop
|
||||
Environment=MISSKEY_CONFIG_YML=*.yml
|
||||
Environment=MISSKEY_CONFIG_DIR=/sharkey/.config
|
||||
|
|
|
|||
6
beeper/etc/systemd/system/cockpit.socket.d/override.conf
Normal file
6
beeper/etc/systemd/system/cockpit.socket.d/override.conf
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
# make cockpit only available on local IP
|
||||
|
||||
[Socket]
|
||||
ListenStream=
|
||||
ListenStream=127.0.0.1:9090
|
||||
FreeBind=yes
|
||||
Loading…
Add table
Add a link
Reference in a new issue