-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
77 lines (71 loc) · 1.79 KB
/
docker-compose.yml
File metadata and controls
77 lines (71 loc) · 1.79 KB
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
name: dotfiles
services:
database:
container_name: sql
image: docker.io/percona:latest
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: root
volumes:
- database:/var/lib/mysql
- /etc/localtime:/etc/localtime
ports:
- 3306:3306
phpmyadmin:
container_name: phpmyadmin
image: docker.io/phpmyadmin/phpmyadmin:latest
restart: unless-stopped
environment:
PMA_HOST: database
PMA_USER: root
# PMA_PASSWORD: bukankahinimy?
PMA_PASSWORD: root
depends_on:
- database
ports:
- 8008:80
iml:
container_name: iml
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}-openvino
restart: unless-stopped
ports:
- 3003:3003
volumes:
- /etc/localtime:/etc/localtime
- /dev/bus/usb:/dev/bus/usb
- immich-model-cache:/cache
devices:
- /dev/dri:/dev/dri
device_cgroup_rules:
- "c 189:* rmw"
healthcheck:
test: ["CMD", "curl", "-fsS", "http://localhost:3003/"]
interval: 30s
timeout: 5s
retries: 5
start_period: 20s
9router:
container_name: 9router
image: decolua/9router:latest
restart: unless-stopped
ports:
- 127.0.0.1:20128:20128
volumes:
- "$HOME/.9router:/app/data"
environment:
DATA_DIR: /app/data
freebuff2api:
container_name: freebuff2api
image: ghcr.io/quorinex/freebuff2api:latest
restart: unless-stopped
ports:
- 127.0.0.1:8080:8080
environment:
AUTH_TOKENS: ${FREEBUFF_AUTH_TOKENS}
ROTATION_INTERVAL: ${FREEBUFF_ROTATION_INTERVAL:-6h}
REQUEST_TIMEOUT: ${FREEBUFF_REQUEST_TIMEOUT:-15m}
API_KEYS: ${FREEBUFF_API_KEYS}
HTTP_PROXY: ${FREEBUFF_HTTP_PROXY}
volumes:
database:
immich-model-cache: