1
0
Fork 0

New configs for new server.

This commit is contained in:
Jonathan Chan 2021-10-23 07:20:40 +02:00
parent 919fcabeaa
commit fc111f7808
5 changed files with 0 additions and 93 deletions

View File

@ -1,17 +0,0 @@
version: "3"
services:
funkwhale:
image: funkwhale/all-in-one:0.19.0
container_name: funkwhale
restart: unless-stopped
env_file: .env
environment:
- PUID=1000
- PGID=1000
volumes:
- /srv/docker/funkwhale/data:/data
- /srv/docker/funkwhale/data/music:/music
ports:
- 5000:80

View File

@ -1,15 +0,0 @@
version: "3"
services:
mediawiki:
image: mediawiki
container_name: mediawiki
restart: always
ports:
- "8282:80"
volumes:
- data:/var/www
- ./LocalSettings.php:/var/www/html/LocalSettings.php
volumes:
data:

View File

@ -1,11 +0,0 @@
version: "3"
services:
nitter:
image: zedeus/nitter
container_name: nitter
restart: always
ports:
- "8888:8080"
volumes:
- ./nitter.conf:/src/nitter.conf

View File

@ -1,16 +0,0 @@
version: "3"
services:
syncthing:
image: syncthing/syncthing
container_name: syncthing
restart: always
environment:
- PUID=1000
- PGID=1000
ports:
- "8384:8384"
- "22000:22000"
- "21027:21027/udp"
volumes:
- .:/var/syncthing

View File

@ -1,34 +0,0 @@
version: "3"
services:
ttrss:
image: x86dev/docker-ttrss
container_name: ttrss
restart: always
environment:
- SELF_URL_PATH=https://rss.ionathan.ch/
- TTRSS_SELF_URL=https://rss.ionathan.ch/
- TTRSS_PROTO=https
- TTRSS_URL=rss.ionathan.ch
- DB_PORT_5432_TCP_ADDR=ttrssdb
- DB_PORT_5432_TCP_PORT=5432
- DB_HOST=ttrssdb
- DB_PORT=5432
- DB_TYPE=pgsql
ports:
- "8080:8080"
depends_on:
- ttrssdb
ttrssdb:
image: postgres:alpine
container_name: ttrssdb
restart: always
environment:
- POSTGRES_USER=docker
- POSTGRES_PASSWORD=docker
expose:
- "5432"
volumes:
- ttrssdb:/var/lib/postgresql/data
volumes:
ttrssdb: