Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
docker_notes:docker-deluge [2024-12-12 Thu wk50 22:16] – [OpenVPN setup] baumkp | docker_notes:docker-deluge [2025-06-21 Sat wk25 13:00] (current) – [Compose file] baumkp | ||
---|---|---|---|
Line 105: | Line 105: | ||
*[[https:// | *[[https:// | ||
- | *Add '' | + | *Add '' |
*Or | *Or | ||
< | < | ||
- | - / | + | - / |
+ | | ||
+ | | ||
=====docker external volumes===== | =====docker external volumes===== | ||
There are 2 type of volume needs in this set up. | There are 2 type of volume needs in this set up. | ||
Line 182: | Line 184: | ||
The docker build command to build the image was '' | The docker build command to build the image was '' | ||
- | The compose.yml file is: | + | I like a constant mac address on my private network. |
- | < | + | |
+ | ++++The compose.yml file is:| | ||
+ | < | ||
services: | services: | ||
deluge: | deluge: | ||
Line 191: | Line 195: | ||
stdin_open: true | stdin_open: true | ||
container_name: | container_name: | ||
+ | | ||
restart: ' | restart: ' | ||
+ | | ||
volumes: | volumes: | ||
- '/ | - '/ | ||
Line 197: | Line 203: | ||
- '/ | - '/ | ||
- '/ | - '/ | ||
+ | | ||
networks: | networks: | ||
macnet1: | macnet1: | ||
ipv4_address: | ipv4_address: | ||
+ | mac_address: | ||
+ | |||
cap_add: | cap_add: | ||
- NET_ADMIN | - NET_ADMIN | ||
+ | |||
command: /bin/sh | command: /bin/sh | ||
+ | |||
+ | devices: | ||
+ | - / | ||
networks: | networks: | ||
macnet1: | macnet1: | ||
external: true</ | external: true</ | ||
+ | ++++ | ||
+ | |||
Some basic docker compose commands: | Some basic docker compose commands: | ||
*'' | *'' |