Skip to content

Commit dba1b9f

Browse files
committed
fix: remove deprecated compose version tag
1 parent ea9ff8a commit dba1b9f

File tree

148 files changed

+658
-603
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+658
-603
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ A [pastebin](https://en.wikipedia.org/wiki/Pastebin) is a type of online content
282282
- [Gokapi](examples/gokapi) - Lightweight selfhosted Firefox Send alternative without public upload. AWS S3 supported.
283283
- [Projectsend](examples/projectsend) - ProjectSend is a free, open source software that lets you share files with your clients, focused on ease of use and privacy. It supports clients groups, system users roles, statistics, multiple languages, detailed logs and much more!
284284
- [Pwndrop](examples/pwndrop) - pwndrop is a self-deployable file hosting service for sending out red teaming payloads or securely sharing your private files over HTTP and WebDAV.
285-
- [Droppy](examples/droppy) (deprecated) - droppy is a self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser. It is particularly well-suited to be run on low-end hardware like the Raspberry Pi.
286285
- [PairDrop](examples/pairdrop) - PairDrop is a sublime alternative to AirDrop that works on all platforms. Send images, documents or text via peer to peer connection to devices in the same local network/Wi-Fi or to paired devices.
287286
- [MinIO](examples/minio) - MinIO is an object storage server, compatible with Amazon S3 cloud storage service, mainly used for storing unstructured data (such as photos, videos, log files, etc.).
288287
- [Transfer.sh](examples/transfer.sh) - Easy and fast file sharing from the command-line.
@@ -370,7 +369,6 @@ Software that helps to increase security and privacy.
370369
- [CrowdSec](examples/crowdsec) - The open-source and participative security solution offering crowdsourced protection against malicious IPs and access to the most advanced real-world CTI.
371370
- [Tor-Browser](examples/tor-browser) - Running a Tor browser instance on any headless server.
372371
- [Firefox](examples/firefox) - Firefox by linuxserver.io allows you to run the popular Firefox web broser on a remote server.
373-
- [Bibliogram](examples/bibliogram) (deprecated) - Bibliogram is a private front-end frontend to Instagram, similar to Invidous.
374372
- [Nitter](examples/nitter) - Nitter is an alternative front-end to Twitter, and was inspired by Invidious.
375373
- [Unify Network Application](examples/unify-network-application) - The Unifi-network-application software is a powerful, enterprise wireless software engine ideal for high-density client deployments requiring low latency and high uptime performance.
376374

examples/adguard-home-sync/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version: "2.1"
21
services:
2+
33
adguardhome-sync:
44
image: linuxserver/adguardhome-sync
55
container_name: adguardhome-sync
@@ -18,4 +18,4 @@ services:
1818
- PGID=1000
1919
restart: unless-stopped
2020
volumes:
21-
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/adguard-home-sync:/config
21+
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/adguard-home-sync:/config

examples/adguard-home/docker-compose.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
version: "3"
2-
31
services:
2+
43
adguard:
4+
image: adguard/adguardhome:latest
55
container_name: adguard
66
hostname: adguard
7-
image: adguard/adguardhome:latest
87
ports:
98
- 3000:3000/tcp # only required during initial setup
109
- 8080:80/tcp # web interface after setup

examples/answer/docker-compose.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
version: "3"
2-
31
services:
2+
43
answer:
5-
container_name: answer
64
image: answerdev/answer
5+
container_name: answer
76
ports:
8-
- '9080:80'
7+
- 9080:80
98
expose:
109
- 80
1110
restart: unless-stopped

examples/archivebox/docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
version: "3.9"
2-
31
services:
2+
43
archivebox:
54
image: archivebox/archivebox:dev
65
container_name: archivebox

examples/arr-suite/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.6"
2-
31
services:
42

53
# image used to index torrent links from the internet

examples/authelia/docker-compose.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
1-
version: '3.3'
2-
31
services:
2+
43
authelia:
54
image: authelia/authelia
65
container_name: authelia
76
volumes:
87
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/authelia/config:/config
9-
networks:
10-
- proxy
118
labels:
129
- 'traefik.enable=true'
1310
- 'traefik.http.routers.authelia.rule=Host(`auth.example.com`)' # replace with your domain name
1411
- 'traefik.http.routers.authelia.entrypoints=https'
1512
- 'traefik.http.middlewares.authelia.forwardauth.address=http://authelia:9091/api/verify?rd=https://auth.example.com' # replace with your domain name
1613
- 'traefik.http.middlewares.authelia.forwardauth.trustForwardHeader=true'
1714
- 'traefik.http.middlewares.authelia.forwardauth.authResponseHeaders=Remote-User,Remote-Groups,Remote-Name,Remote-Email' # yamllint disable-line rule:line-length
15+
ports:
16+
- 9091:9091/tcp
1817
expose:
1918
- 9091
2019
restart: unless-stopped
2120
environment:
2221
- TZ=Europe/Berlin
22+
#networks:
23+
# - proxy
2324

2425
redis:
2526
image: redis:alpine
2627
container_name: authelia-redis
2728
command: redis-server --requirepass SuperSecureRedisAuthPassword # also reflect this in the authelia config file
2829
volumes:
2930
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/authelia/redis:/data
30-
networks:
31-
- proxy
3231
expose:
3332
- 6379
3433
restart: unless-stopped
3534
environment:
3635
- TZ=Europe/Berlin
36+
#networks:
37+
# - proxy
3738

38-
networks:
39-
proxy:
40-
external: true
39+
#networks:
40+
# proxy:
41+
# external: true

examples/authentik/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.4"
2-
31
services:
42

53
postgresql:

examples/bibliogram/README.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

examples/bibliogram/config.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)