- working macvlan with docker
- systemd network devices
- each container can reach the whole nework (full routing)
docker-compose.yml
example with static ipv4 on macvlan- if no ip defined, container get a ip within
192.168.155.192/27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Secret | |
metadata: | |
name: plex-claim-token | |
namespace: media | |
type: Opaque | |
data: | |
token: ${API_TOKEN_OPAQUE} | |
--- | |
apiVersion: v1 |
OlderNewer