-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.yaml
95 lines (95 loc) · 2.55 KB
/
services.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
version: "3.7"
services:
# ---------------------------------------------------------------
# Jellyfin
# ---------------------------------------------------------------
jellyfin:
image: lscr.io/linuxserver/jellyfin:latest
environment:
PUID: 1000
PGID: 1000
TZ: "America/New_York"
JELLYFIN_PublishedServerUrl: "bwing.local"
volumes:
- type: bind
source: "/home/bwing/volumes/jellyfin_config/_data"
target: "/config"
- type: bind
source: "/mnt/media2/tv"
target: "/data/tvshows"
- type: bind
source: "/mnt/media1/movies"
target: "/data/movies"
ports:
- 8096:8096
restart: unless-stopped
networks:
- internal
# ---------------------------------------------------------------
# Keycloak
# ---------------------------------------------------------------
postgresql:
image: docker.io/bitnami/postgresql:11
environment:
# ALLOW_EMPTY_PASSWORD is recommended only for development.
- ALLOW_EMPTY_PASSWORD=yes
- POSTGRESQL_USERNAME=bn_keycloak
- POSTGRESQL_DATABASE=bitnami_keycloak
volumes:
- type: bind
source: "/home/bwing/volumes/keycloak_postgresql_data/_data"
target: "/bitnami/postgresql"
networks:
- internal
keycloak:
image: docker.io/bitnami/keycloak:21
environment:
- KEYCLOAK_ADMIN=bwing
- KEYCLOAK_ADMIN_PASSWORD=replaceme12345
depends_on:
- postgresql
ports:
- "8686:8080"
networks:
- internal
# ---------------------------------------------------------------
# Shield-DB
# ---------------------------------------------------------------
pocketbase:
image: shield-pb:latest
volumes:
- type: volume
source: "shield-db"
target: "/pb/data"
networks:
- internal
ports:
- "8090:8090"
# ---------------------------------------------------------------
# Nginx
# ---------------------------------------------------------------
nginx:
container_name: nginx
image: nginx:1.18.0-alpine
ports:
- 80:80
- 443:443
volumes:
- /home/bwing/volumes/nginx_ui/_data:/etc/nginx
# ---------------------------------------------------------------
# Ollama
# ---------------------------------------------------------------
ollama:
container_name: ollama
image: ollama/ollama
ports:
- 11434:11434
volumes:
- type: volume
source: "ollama"
target: "/root/.ollama"
networks:
internal:
volumes:
shield-db:
ollama: