mirror of
https://github.com/abhilesh/self-hosted-docker-setups.git
synced 2026-03-03 00:27:01 +00:00
Remove obsolete version element and rename files
This commit is contained in:
@@ -113,3 +113,8 @@ docker compose rm -f
|
||||
# Rebuild containers with updated images
|
||||
docker compose up -d --build
|
||||
```
|
||||
|
||||
---
|
||||
## Docker Compose specifications
|
||||
|
||||
Read more about the `compose.yaml` file specifications at - https://docs.docker.com/compose/compose-file/
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '3.3'
|
||||
services:
|
||||
adguard-home:
|
||||
image: adguard/adguardhome
|
||||
@@ -1,4 +1,3 @@
|
||||
version: "3.7"
|
||||
services:
|
||||
audiobookshelf:
|
||||
image: ghcr.io/advplyr/audiobookshelf:latest
|
||||
@@ -1,4 +1,3 @@
|
||||
version: "2.1"
|
||||
services:
|
||||
calibre-web:
|
||||
image: linuxserver/calibre-web:latest
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '2'
|
||||
services:
|
||||
cloudflare-ddns:
|
||||
container_name: cloudflare-ddns
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
code-server:
|
||||
image: linuxserver/code-server
|
||||
@@ -1,5 +1,3 @@
|
||||
version: '2.1'
|
||||
|
||||
networks:
|
||||
monitor-net:
|
||||
driver: bridge
|
||||
@@ -1,5 +1,3 @@
|
||||
version: '2.1'
|
||||
|
||||
services:
|
||||
|
||||
nodeexporter:
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
duplicati:
|
||||
image: linuxserver/duplicati
|
||||
@@ -1,9 +1,3 @@
|
||||
version: "3"
|
||||
|
||||
networks:
|
||||
gitea:
|
||||
external: false
|
||||
|
||||
services:
|
||||
server:
|
||||
image: gitea/gitea:1.15.0
|
||||
@@ -42,3 +36,7 @@ services:
|
||||
- gitea
|
||||
volumes:
|
||||
- ./mysql:/var/lib/mysql
|
||||
|
||||
networks:
|
||||
gitea:
|
||||
external: false
|
||||
@@ -1,5 +1,3 @@
|
||||
version: "3"
|
||||
|
||||
services:
|
||||
gotify:
|
||||
image: gotify/server-arm64
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
grocy:
|
||||
image: linuxserver/grocy
|
||||
@@ -7,9 +5,9 @@ services:
|
||||
environment:
|
||||
- PUID=1000
|
||||
- PGID=1000
|
||||
- TZ=Amrerica/Chicago # Change this
|
||||
- TZ=Amrerica/Chicago # Change this
|
||||
volumes:
|
||||
- /home/pi/home-server/grocy/config:/config # Change this
|
||||
ports:
|
||||
- 80:80 # Change this
|
||||
- 80:80 # Change this
|
||||
restart: unless-stopped
|
||||
@@ -1,9 +1,3 @@
|
||||
version: '2.0'
|
||||
|
||||
networks:
|
||||
guacnetwork_compose:
|
||||
driver: bridge
|
||||
|
||||
services:
|
||||
guacd:
|
||||
container_name: guacamole_guacd
|
||||
@@ -49,3 +43,7 @@ services:
|
||||
ports:
|
||||
- 9628:8080/tcp # Guacamole is on :8080/guacamole, not /.
|
||||
restart: always
|
||||
|
||||
networks:
|
||||
guacnetwork_compose:
|
||||
driver: bridge
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
homeassistant:
|
||||
image: linuxserver/homeassistant
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2"
|
||||
services:
|
||||
homer:
|
||||
image: b4bz/homer
|
||||
@@ -1,5 +1,3 @@
|
||||
version: "3.8"
|
||||
|
||||
#
|
||||
# WARNING: Make sure to use the docker-compose.yml of the current release:
|
||||
#
|
||||
@@ -8,13 +6,18 @@ version: "3.8"
|
||||
# The compose file on main may not be compatible with the latest release.
|
||||
#
|
||||
|
||||
name: immich
|
||||
|
||||
services:
|
||||
immich-server:
|
||||
container_name: immich_server
|
||||
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
||||
command: [ "start.sh", "immich" ]
|
||||
# extends:
|
||||
# file: hwaccel.transcoding.yml
|
||||
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
||||
volumes:
|
||||
- ${UPLOAD_LOCATION}:/usr/src/app/upload # defined in .env file
|
||||
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
|
||||
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .env
|
||||
@@ -24,26 +27,8 @@ services:
|
||||
- redis
|
||||
- database
|
||||
restart: always
|
||||
|
||||
immich-microservices:
|
||||
container_name: immich_microservices
|
||||
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
||||
# extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/hardware-transcoding
|
||||
# file: hwaccel.transcoding.yml
|
||||
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
||||
# extends:
|
||||
# file: hwaccel.yml
|
||||
# service: hwaccel
|
||||
command: [ "start.sh", "microservices" ]
|
||||
volumes:
|
||||
- ${UPLOAD_LOCATION}:/usr/src/app/upload # defined in .env file
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
env_file:
|
||||
- .env
|
||||
depends_on:
|
||||
- redis
|
||||
- database
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
immich-machine-learning:
|
||||
container_name: immich_machine_learning
|
||||
@@ -58,25 +43,34 @@ services:
|
||||
env_file:
|
||||
- .env
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: redis:6.2-alpine@sha256:70a7a5b641117670beae0d80658430853896b5ef269ccf00d1827427e3263fa3
|
||||
image: docker.io/redis:6.2-alpine@sha256:e3b17ba9479deec4b7d1eeec1548a253acc5374d68d3b27937fcfe4df8d18c7e
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
restart: always
|
||||
|
||||
database:
|
||||
container_name: immich_postgres
|
||||
image: tensorchord/pgvecto-rs:pg15-v0.2.0 # Default installation uses pg14
|
||||
env_file:
|
||||
- .env
|
||||
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
||||
environment:
|
||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||
POSTGRES_USER: ${DB_USERNAME}
|
||||
POSTGRES_DB: ${DB_DATABASE_NAME}
|
||||
POSTGRES_INITDB_ARGS: '--data-checksums'
|
||||
volumes:
|
||||
- pgdata:/var/lib/postgresql/data
|
||||
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
|
||||
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
|
||||
interval: 5m
|
||||
start_interval: 30s
|
||||
start_period: 5m
|
||||
command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
|
||||
restart: always
|
||||
|
||||
volumes:
|
||||
pgdata:
|
||||
model-cache:
|
||||
model-cache:
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '3'
|
||||
services:
|
||||
app:
|
||||
environment:
|
||||
@@ -1,4 +1,3 @@
|
||||
version: "3.1"
|
||||
services:
|
||||
mealie:
|
||||
container_name: mealie
|
||||
@@ -1,9 +1,3 @@
|
||||
version: '3.8'
|
||||
|
||||
volumes:
|
||||
nextcloud:
|
||||
db:
|
||||
|
||||
services:
|
||||
db:
|
||||
image: arm64v8/mariadb:10.5
|
||||
@@ -71,4 +65,8 @@ services:
|
||||
entrypoint: /cron.sh
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
- redis
|
||||
|
||||
volumes:
|
||||
nextcloud:
|
||||
db:
|
||||
@@ -1,9 +1,3 @@
|
||||
version: '3.8'
|
||||
|
||||
volumes:
|
||||
nextcloud:
|
||||
db:
|
||||
|
||||
services:
|
||||
db:
|
||||
image: arm64v8/mariadb:10.5
|
||||
@@ -75,4 +69,8 @@ services:
|
||||
entrypoint: /cron.sh
|
||||
depends_on:
|
||||
- db
|
||||
- redis
|
||||
- redis
|
||||
|
||||
volumes:
|
||||
nextcloud:
|
||||
db:
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '3'
|
||||
services:
|
||||
app:
|
||||
image: 'jc21/nginx-proxy-manager:latest'
|
||||
@@ -1,6 +1,3 @@
|
||||
---
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
overseerr:
|
||||
image: sctx/overseerr:latest
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
pairdrop:
|
||||
image: lscr.io/linuxserver/pairdrop:latest
|
||||
@@ -31,7 +31,6 @@
|
||||
# For more extensive installation and update instructions, refer to the
|
||||
# documentation.
|
||||
|
||||
version: "3.4"
|
||||
services:
|
||||
broker:
|
||||
container_name: paperless_broker
|
||||
@@ -1,5 +1,3 @@
|
||||
version: '3.5'
|
||||
|
||||
# Example Docker Compose config file for PhotoPrism (Raspberry Pi / ARM64)
|
||||
#
|
||||
# Documentation : https://docs.photoprism.org/getting-started/raspberry-pi/
|
||||
@@ -1,5 +1,3 @@
|
||||
version: "3"
|
||||
|
||||
# More info at https://github.com/pi-hole/docker-pi-hole/ and https://docs.pi-hole.net/
|
||||
services:
|
||||
pihole:
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
plex:
|
||||
image: ghcr.io/linuxserver/plex
|
||||
@@ -1,4 +1,3 @@
|
||||
version: "2.1"
|
||||
services:
|
||||
podgrab:
|
||||
image: akhilrex/podgrab
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
snapdrop:
|
||||
image: linuxserver/snapdrop
|
||||
@@ -1,5 +1,3 @@
|
||||
version: "2"
|
||||
|
||||
services:
|
||||
surfshark:
|
||||
# Image from https://github.com/ilteoood/docker-surfshark
|
||||
@@ -1,4 +1,3 @@
|
||||
version: "3.7"
|
||||
services:
|
||||
traggo:
|
||||
image: traggo/server:latest
|
||||
@@ -1,5 +1,3 @@
|
||||
version: '3.3'
|
||||
|
||||
services:
|
||||
tubearchivist:
|
||||
container_name: tubearchivist
|
||||
@@ -1,5 +1,3 @@
|
||||
version: '3.3'
|
||||
|
||||
services:
|
||||
uptime-kuma:
|
||||
image: louislam/uptime-kuma
|
||||
@@ -1,5 +1,3 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
vaultwarden:
|
||||
image: vaultwarden/server:latest
|
||||
@@ -10,4 +8,4 @@ services:
|
||||
volumes:
|
||||
- ./vw-data:/data
|
||||
ports:
|
||||
- 8080:80 # Change this
|
||||
- 8080:80 # Change this
|
||||
@@ -14,7 +14,7 @@ services:
|
||||
VIKUNJA_CACHE_ENABLED: 1
|
||||
VIKUNJA_CACHE_TYPE: 'redis'
|
||||
VIKUNJA_SERVICE_ROOTPATH: '/home/pi/vikunja' # Change this
|
||||
VIKUNJA_SERVICE_FRONTENDURL: 'https://vikunja.example.com' . # Change this
|
||||
VIKUNJA_SERVICE_FRONTENDURL: 'https://vikunja.example.com' # Change this
|
||||
VIKUNJA_SERVICE_ENABLECALDAV: 'true'
|
||||
VIKUNJA_SERVICE_ENABLELINKSHARING: 'true'
|
||||
VIKUNJA_SERVICE_ENABLETASKATTACHMENTS: 'true'
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '3'
|
||||
services:
|
||||
wallabag:
|
||||
image: abhilesh7/wallabag-arm
|
||||
@@ -1,4 +1,3 @@
|
||||
version: '3.8'
|
||||
services:
|
||||
watchtower:
|
||||
image: containrrr/watchtower:latest
|
||||
@@ -1,5 +1,3 @@
|
||||
---
|
||||
version: "2.1"
|
||||
services:
|
||||
wireguard:
|
||||
image: linuxserver/wireguard
|
||||
Reference in New Issue
Block a user