-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (40 loc) · 1.08 KB
/
Copy pathdocker-compose.yml
File metadata and controls
50 lines (40 loc) · 1.08 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
services:
torrentify-web-api:
build:
context: .
args:
- VITE_BASE_PATH=/torrentify-api
image: torrentify-web-api:latest
container_name: torrentify-web-api
restart: unless-stopped
environment:
- BASE_PATH=/torrentify-api
# Port web interface
ports:
- "3001:3000"
env_file:
- .env
volumes:
# Configuration persistante
- ./config:/data/config
# Acces aux montages host pour navigation fichiers et création torrents
- /mnt:/mnt
- /media:/media
# Entrees - Adaptez selon vos chemins
# - /chemin/vers/films:/data/films
# - /chemin/vers/series:/data/series
# - /chemin/vers/jeux:/data/jeux
# Sorties
# - /chemin/vers/torrents:/data/torrent
# Hardlinks pour Transmission (meme filesystem requis)
# - /chemin/vers/downloads:/data/hardlinks
# Cache TMDb
# - /chemin/vers/cache:/data/cache_tmdb
networks:
- default
- gateway-network
networks:
default:
name: torrentify-network
gateway-network:
external: true