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

-2
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

+2-2
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

+2-3
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

+3-4
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

+1-2
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

-2
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

+10-9
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

-2
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

-4
This file was deleted.

examples/bibliogram/config.js

-3
This file was deleted.

examples/bibliogram/docker-compose.yml

-23
This file was deleted.

examples/bitwarden/docker-compose.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
version: "3.8"
2-
31
services:
2+
43
bitwarden:
54
image: bitwarden/self-host:2024.8.0-beta
65
container_name: bitwarden_unified

examples/bookstack/docker-compose.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
version: "3"
2-
31
services:
2+
43
bookstack:
54
image: linuxserver/bookstack
65
container_name: bookstack
@@ -18,6 +17,8 @@ services:
1817
restart: unless-stopped
1918
ports:
2019
- 8099:80
20+
expose:
21+
- 80
2122
depends_on:
2223
- bookstack_db
2324
#networks:
@@ -47,6 +48,8 @@ services:
4748
- MYSQL_DATABASE=bookstackapp
4849
- MYSQL_USER=bookstack
4950
- MYSQL_PASSWORD=USERPW1
51+
expose:
52+
- 3306
5053
volumes:
5154
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/bookstack/mariadb-config:/config
5255
restart: unless-stopped

examples/caddy/docker-compose.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version: "3.7"
21
services:
2+
33
caddy:
44
image: caddy:latest
55
container_name: caddy
@@ -9,6 +9,9 @@ services:
99
ports:
1010
- "80:80"
1111
- "443:443"
12+
expose:
13+
- 80 # http
14+
- 443 # https
1215
volumes:
1316
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/caddy/CaddyFile:/etc/caddy/Caddyfile
1417
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/caddy/data:/data

examples/changedetection/docker-compose.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version: "2.1"
21
services:
2+
33
changedetection:
44
image: lscr.io/linuxserver/changedetection.io:latest
55
container_name: changedetection
@@ -11,6 +11,8 @@ services:
1111
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/changedetection/config:/config
1212
ports:
1313
- 5000:5000
14+
expose:
15+
- 5000
1416
restart: unless-stopped
1517
#networks:
1618
# - proxy

examples/chevereto/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
version: "3.7"
2-
31
services:
2+
43
chevereto:
54
image: ghcr.io/chevereto/chevereto:4.1
65
container_name: chevereto
@@ -40,6 +39,8 @@ services:
4039
container_name: chevereto_mariadb
4140
restart: unless-stopped
4241
init: true
42+
expose:
43+
- 3306
4344
environment:
4445
MYSQL_DATABASE: chevereto
4546
MYSQL_USER: chevereto

examples/cloudflare-ddns/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
version: "3"
21
services:
2+
33
cloudflare-ddns:
44
image: favonia/cloudflare-ddns:latest
55
container_name: cloudflare-ddns

examples/code-server/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "2.1"
2-
31
services:
42

53
code-server:
@@ -18,6 +16,8 @@ services:
1816
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/vscode/config:/config
1917
ports:
2018
- 8443:8443
19+
expose:
20+
- 8443
2121
restart: unless-stopped
2222
#networks:
2323
# - proxy

examples/crowdsec/docker-compose.yml

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ services:
44
image: crowdsecurity/crowdsec:v1.6.3
55
container_name: crowdsec
66
restart: unless-stopped
7+
ports:
8+
- 127.0.0.1:9876:8080 # http api for local fw bouncers
9+
- 127.0.0.1:6060:6060 # metrics endpoint for prometheus
710
expose:
811
- 8080 # http api for bouncers
912
- 6060 # metrics endpoint for prometheus

examples/cs2-dedicated-server/docker-compose.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.7'
2-
31
services:
42

53
cs2-server:

examples/dashy/docker-compose.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
---
2-
version: "3.8"
31
services:
2+
43
dashy:
4+
image: lissy93/dashy
55
container_name: dashy
66
hostname: dashy
7-
image: lissy93/dashy
87
volumes:
98
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dashy/config/config.yml:/app/public/conf.yml
109
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/dashy/icons:/app/public/item-icons
@@ -14,7 +13,9 @@ services:
1413
- GID=1000
1514
restart: unless-stopped
1615
ports:
17-
- 4000:80
16+
- 4000:80
17+
expose:
18+
- 80
1819
healthcheck:
1920
test: ['CMD', 'node', '/app/services/healthcheck']
2021
interval: 1m30s

examples/deemix/docker-compose.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
1-
version: "3"
2-
31
services:
2+
43
deemix:
4+
image: registry.gitlab.com/bockiii/deemix-docker:latest
55
container_name: deemix
6+
hostname: deemix
67
environment:
78
- PUID=1000
89
- PGID=1000
9-
hostname: deemix
10-
image: registry.gitlab.com/bockiii/deemix-docker:latest
1110
restart: unless-stopped
1211
ports:
1312
- 6595:6595

examples/docmost/docker-compose.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3'
2-
31
services:
42

53
docmost:
@@ -53,6 +51,8 @@ services:
5351
- POSTGRES_USER=docmost
5452
- POSTGRES_PASSWORD=STRONG_DB_PASSWORD
5553
restart: unless-stopped
54+
expose:
55+
- 5432
5656
volumes:
5757
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/docmost/database:/var/lib/postgresql/data
5858
#networks:
@@ -62,6 +62,8 @@ services:
6262
image: redis:7.2-alpine
6363
container_name: docmost-redis
6464
restart: unless-stopped
65+
expose:
66+
- 6379
6567
volumes:
6668
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/docmost/redis:/data
6769
#networks:

examples/docuseal/docker-compose.yml

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3'
2-
31
services:
42

53
app:

examples/domainmod/docker-compose.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
---
2-
version: '3.7'
31
services:
2+
43
app:
54
image: domainmod/domainmod:latest
65
container_name: domainmod_app
@@ -20,6 +19,8 @@ services:
2019
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/domainmod/app:/var/www/html
2120
ports:
2221
- 8080:80
22+
expose:
23+
- 80
2324
restart: unless-stopped
2425

2526
db:

0 commit comments

Comments
 (0)