ajout Apps

This commit is contained in:
Hubert Cornet 2024-05-03 12:13:44 +02:00
parent 6ff6c77cf2
commit 6ac26c2c8e
12 changed files with 129 additions and 8 deletions

View File

@ -0,0 +1,24 @@
#### NETWORKS
networks:
back_network:
driver: bridge
attachable: true
#### SERVICES
services:
sonarr:
image: lscr.io/linuxserver/sonarr:latest
container_name: sonarr
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./data:/config
- ./tvseries:/tv #optional
- ./client:/downloads #optional
networks:
- back_network
ports:
- 8989:8989
restart: unless-stopped

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -6,3 +6,19 @@ networks:
#### SERVICES #### SERVICES
services: services:
radarr:
image: lscr.io/linuxserver/radarr:latest
container_name: radarr
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- ./data:/config
- ./movies:/movies #optional
- ./downloads:/downloads #optional
networks:
- back_network
ports:
- 7878:7878
restart: unless-stopped

View File

@ -1,8 +0,0 @@
#### NETWORKS
networks:
back_network:
driver: bridge
attachable: true
#### SERVICES
services:

View File

@ -6,3 +6,34 @@ networks:
#### SERVICES #### SERVICES
services: services:
db:
image: mariadb:10.5
restart: always
environment:
- MYSQL_DATABASE=photoview
- MYSQL_USER=photoview
- MYSQL_PASSWORD=photosecret
- MYSQL_RANDOM_ROOT_PASSWORD=1
volumes:
- ./db:/var/lib/mysql
networks:
- back_network
photoview:
image: viktorstrate/photoview:2
restart: always
networks:
- back_network
ports:
- "8410:80"
depends_on:
- db
environment:
- PHOTOVIEW_DATABASE_DRIVER=mysql
- PHOTOVIEW_MYSQL_URL=photoview:photosecret@tcp(db)/photoview
- PHOTOVIEW_LISTEN_IP=photoview
- PHOTOVIEW_LISTEN_PORT=80
- PHOTOVIEW_MEDIA_CACHE=/app/cache
volumes:
- ./api_cache:/app/cache
- ./photos:/photos

View File

@ -6,3 +6,20 @@ networks:
#### SERVICES #### SERVICES
services: services:
keepassxc:
image: lscr.io/linuxserver/keepassxc:latest
container_name: keepassxc
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /srv/appdata/keepassxc/config:/config
networks:
- back_network
ports:
- 3004:3000
- 3005:3001
restart: unless-stopped

View File

@ -6,3 +6,16 @@ networks:
#### SERVICES #### SERVICES
services: services:
steveiliop56:
image: 'ghcr.io/steveiliop56/getashell:latest'
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
- '/srv/appdata/getashell/data:/app/data'
extra_hosts:
- 'host.docker.internal:host-gateway'
networks:
- back_network
ports:
- '3000:3000'
container_name: getashell
tty: true

View File

@ -6,3 +6,21 @@ networks:
#### SERVICES #### SERVICES
services: services:
freetube:
image: linuxserver/freetube:latest
container_name: freetube
security_opt:
- seccomp:unconfined #optional
environment:
- PUID=1000
- PGID=1000
- TZ=Etc/UTC
volumes:
- /srv/appdata/freetube/config:/config
networks:
- back_network
ports:
- 3000:3000
- 3001:3001
shm_size: "2gb"
restart: unless-stopped

View File

@ -6,3 +6,13 @@ networks:
#### SERVICES #### SERVICES
services: services:
metube:
image: ghcr.io/alexta69/metube
container_name: metube
restart: unless-stopped
networks:
- back_network
ports:
- "8081:8081"
volumes:
- ./downloads:/downloads