Below my docker-compose
I want to add Tailscale to my HomeServer running CoreOS
Im geting an error related to the /var/lib bind-mount
Can anyone help me out how to do this correctly on CoreOS?
Any other suggestions/warnings?
Thanks in Advance
version: '3.3'
services:
tailscale:
container_name: tailscale
cap_add:
- NET_ADMIN
volumes:
- /var/lib:/var/lib:Z
- /dev/net/tun:/dev/net/tun:Z
environment:
- TS_AUTHKEY=MYKEY
network_mode: "host"
image: tailscale/tailscale
privileged: true
restart: unless-stopped