Skip Navigation

I wanted to run a container with Netbird and Memos. I currently have same setup with Tailscale. Could anyone guide me how I can replicate the same using docker compose.

I wanted to run a container with Netbird and Memos. I currently have same setup with Tailscale. Could anyone guide me how I can replicate the same using docker compose. @selfhost

Example docker compose

services: ts-webserver1: image: tailscale/tailscale:latest hostname: memos environment: TSAUTHKEY=tskey-auth-key TSSTATEDIR=/var/lib/tailscale volumes: tailscale-data-webserver1:/var/lib/tailscale devices: /dev/net/tun:/dev/net/tun capadd: netadmin sysmodule restart: unless-stopped

memos: image: neosmemo/memos:stable networkmode: service:ts-webserver1 volumes: memos-data:/var/opt/memos environment: MEMOSMODE=prod MEMOSPORT=5230 MEMOSDATA=/var/opt/memos restart: unless-stopped dependson: ts-webserver1volumes: tailscale-data-webserver1: driver: local memos-data: driver: local

Comments

2