Container settings in Synology DSM #125
Topolino65
started this conversation in
General
Replies: 1 comment
-
|
If you have the hardware for it, it's a lot easier to set up VLAN trunking. Example: network vlan trunking setup - 802.1Q
In this example my NAS's uplink is ovs_bond0 and I've set up 192.168.20.0/24 as VLAN 20 on my network. The container config looks like this: services:
uisp:
image: nico640/docker-unms:latest
restart: always
ports:
- 80
- 443
- 2055/udp
environment:
- TZ=America/Halifax
volumes:
- ./config:/config
networks:
macvlan20:
ipv4_address: 192.168.20.3
networks:
macvlan20:
external: trueThe upshot is that I can give my containers "real" IP addresses on my network. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I recently upgraded my Synology NAS to use SATA SSD drives and forgot to make a note of my settings in Container Manager (running on the latest DSM software). I used to able to access the UIPS dashboard using my NAS local IP address and port 8081. What I need know is a step by step guide to recrerate this and what settings I need/ports etc to get it workng again. I have mapped the container to /docker/uisp folder but am at a loss as to what other settings I need to use. Auto restart, yes of course and set type of container to 'host' but not sure if I have to change the port settings or the environment variables and whether I need to run anything in the execute commands box. It has been a while since I ran this and can't remember how I set this up originally. Any guidance would be appreciated.
Beta Was this translation helpful? Give feedback.
All reactions