Merge branch 'main' into renovate/searxng-searxng
This commit is contained in:
commit
89f6c3513d
3 changed files with 32 additions and 1 deletions
7
ansible/playbooks/docker-prune.yml
Normal file
7
ansible/playbooks/docker-prune.yml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
---
|
||||||
|
- name: Prune unused Docker images
|
||||||
|
hosts: all
|
||||||
|
become: true
|
||||||
|
tasks:
|
||||||
|
- name: Prune unused Docker images using shell
|
||||||
|
shell: docker image prune -f
|
|
@ -130,7 +130,7 @@ services:
|
||||||
|
|
||||||
translate:
|
translate:
|
||||||
container_name: whisper-libretranslate
|
container_name: whisper-libretranslate
|
||||||
image: libretranslate/libretranslate:v1.6.0-cuda
|
image: libretranslate/libretranslate:v1.6.1-cuda
|
||||||
env_file:
|
env_file:
|
||||||
- .env
|
- .env
|
||||||
networks:
|
networks:
|
||||||
|
|
|
@ -161,6 +161,30 @@ services:
|
||||||
networks:
|
networks:
|
||||||
gitea_main:
|
gitea_main:
|
||||||
ipv4_address: 172.25.0.25
|
ipv4_address: 172.25.0.25
|
||||||
|
## Linkwarden
|
||||||
|
postgres:
|
||||||
|
image: postgres:16-alpine
|
||||||
|
env_file: .env
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
- /docker/appdata/linkwarden/pgdata:/var/lib/postgresql/data
|
||||||
|
networks:
|
||||||
|
- gitea_main
|
||||||
|
linkwarden:
|
||||||
|
env_file: .env
|
||||||
|
environment:
|
||||||
|
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@postgres:5432/postgres
|
||||||
|
restart: always
|
||||||
|
container_name: linkwarden
|
||||||
|
image: ghcr.io/linkwarden/linkwarden:v2.7.1
|
||||||
|
networks:
|
||||||
|
- gitea_main
|
||||||
|
ports:
|
||||||
|
- 3005:3000
|
||||||
|
volumes:
|
||||||
|
- /docker/appdata/linkwarden/data:/data/data
|
||||||
|
depends_on:
|
||||||
|
- postgres
|
||||||
|
|
||||||
syncthing:
|
syncthing:
|
||||||
image: ghcr.io/linuxserver/syncthing@sha256:f80ba28cd9597b38a8f25ce1c5097aa92bb08d34a684286e759a90edcd5db617
|
image: ghcr.io/linuxserver/syncthing@sha256:f80ba28cd9597b38a8f25ce1c5097aa92bb08d34a684286e759a90edcd5db617
|
||||||
|
|
Loading…
Reference in a new issue