mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-28 15:45:44 +03:00
24 lines
599 B
YAML
24 lines
599 B
YAML
#version: '3'
|
|
services:
|
|
qbt:
|
|
image: "epicmorg/qbittorrent:${QBT_RELEASE}"
|
|
build:
|
|
context: .
|
|
args:
|
|
QBT_RELEASE: ${QBT_RELEASE}
|
|
LT_RELEASE: ${LT2_RELEASE}
|
|
qbt-libtorrent2:
|
|
image: "epicmorg/qbittorrent:${QBT_RELEASE}-libtorrent${LT2_RELEASE}"
|
|
build:
|
|
context: .
|
|
args:
|
|
QBT_RELEASE: ${QBT_RELEASE}
|
|
LT_RELEASE: ${LT2_RELEASE}
|
|
qbt-libtorrent1:
|
|
image: "epicmorg/qbittorrent:${QBT_RELEASE}-libtorrent${LT1_RELEASE}"
|
|
build:
|
|
context: .
|
|
args:
|
|
QBT_RELEASE: ${QBT_RELEASE}
|
|
LT_RELEASE: ${LT1_RELEASE}
|