Added mastodon, tautulli

This commit is contained in:
Lino Silva
2023-04-12 13:50:33 +01:00
parent e37782b856
commit 4fbe12c336
25 changed files with 533 additions and 2 deletions
@@ -0,0 +1,30 @@
version: "2.1"
services:
mastodon:
image: lscr.io/linuxserver/mastodon:latest
container_name: mastodon
env_file:
- .env
volumes:
- /config:/config
ports:
- 80:80
restart: unless-stopped
redis:
container_name: redis
image: redis:latest
restart: always
env_file:
- .env
database:
container_name: database
image: postgres:14
env_file:
- .env
environment:
PG_DATA: /var/lib/postgresql/data
volumes:
- /psql/data:/var/lib/postgresql/data
restart: always