Posts tagged ‘docker’

12 posts; newest first

Using docker with macvlan on Synology NAS

8 Mar 2025 12:04 docker synology-nas

If you use the bridge or host network drivers in Docker, containers must use different port numbers to be accessible on the host network. Here’s how to use the macvlan driver to assign a unique IP address to each container, allowing containers (and the host) to use the same port numbers.

» read more

SSH Forwarding in Docker

2 Oct 2023 09:38 docker

If you’re building your application inside a Docker container, and you need to pull dependencies from a git server (e.g. Github or Gitlab) using SSH, you need to forward your SSH session to the container.

» read more