aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorCody Hiar <cody@hiar.ca>2021-11-21 15:33:37 -0700
committerCody Hiar <cody@hiar.ca>2021-11-21 15:33:37 -0700
commitf19ebb2def3b4b26e2f0755af29f3b8f7dd2ca99 (patch)
treef484f5d7dda66861b533bb4c0035831e5527682a /docker-compose.yml
Initial working version
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..de618be
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,28 @@
+version: '3'
+services:
+ nordvpnd:
+ build:
+ context: ./
+ dockerfile: ./docker/Dockerfile
+ network_mode: "bridge"
+ container_name: transmission
+ image: thornycrackers/transmission
+ cap_add:
+ - NET_ADMIN
+ ulimits:
+ nproc: 65535
+ nofile:
+ soft: 26677
+ hard: 46677
+ ports:
+ - "8000"
+ volumes:
+ - /dev/net/tun:/dev/net/tun
+ - nord-data:/var/lib/nordvpn/data
+ - ./downloads:/root/Downloads
+ command: /bin/bash
+ tty: true
+ stdin_open: true
+
+volumes:
+ nord-data: