@ -1,16 +1,18 @@
# qBittorrent-nox Docker Image
# qBittorrent-nox Docker Image
This Dockerfile allows you to build a docker i mage containing qBittorrent-nox
This Dockerfile allows you to build a Docker I mage containing qBittorrent-nox
## Prerequisites
## Prerequisites
In order to build/run this image you'll need `docker` installed: https://docs.docker.com/get-docker/
In order to build/run this image you'll need Docker installed: https://docs.docker.com/get-docker/
It is also recommended to install `docker-compose` as it can significantly ease the process: https://docs.docker.com/compos e/install/
If you don't need the GUI, you can just install Docker Engine: https://docs.docker.com/engin e/install/
## Building docker image
It is also recommended to install Docker Compose as it can significantly ease the process: https://docs.docker.com/compose/install/
* If you are using docker (not docker-compose) then run the following commands in this folder:
## Building Docker Image
* If you are using Docker (not Docker Compose) then run the following commands in this folder:
```shell
```shell
export \
export \
QBT_VERSION=devel
QBT_VERSION=devel
@ -20,7 +22,7 @@ It is also recommended to install `docker-compose` as it can significantly ease
.
.
```
```
* If you are using docker-c ompose then you should edit `.env` file first.
* If you are using Docker C ompose then you should edit `.env` file first.
You can find an explanation of the variables in the following [Parameters ](#parameters ) section. \
You can find an explanation of the variables in the following [Parameters ](#parameters ) section. \
Then run the following commands in this folder:
Then run the following commands in this folder:
```shell
```shell
@ -51,7 +53,7 @@ There are some paths involved:
## Running container
## Running container
* Using docker (not docker-c ompose), simply run:
* Using Docker (not Docker C ompose), simply run:
```shell
```shell
export \
export \
QBT_EULA=accept \
QBT_EULA=accept \
@ -75,7 +77,7 @@ There are some paths involved:
qbittorrent-nox:"$QBT_VERSION"
qbittorrent-nox:"$QBT_VERSION"
```
```
* Using docker-c ompose:
* Using Docker C ompose:
```shell
```shell
docker compose up
docker compose up
```
```
@ -84,12 +86,12 @@ Then you can login at: `http://127.0.0.1:8080`
## Stopping container
## Stopping container
* Using docker (not docker-c ompose):
* Using Docker (not Docker C ompose):
```shell
```shell
docker stop -t 1800 qbittorrent-nox
docker stop -t 1800 qbittorrent-nox
```
```
* Using docker-c ompose:
* Using Docker C ompose:
```shell
```shell
docker compose down
docker compose down
```
```