You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
org.opencontainers.image.description="Tailscale mesh VPN on FreeBSD." \
17
+
org.opencontainers.image.description="Zero-config mesh VPN built on WireGuard — securely connect your devices without port forwarding or firewall changes." \
|`latest` / `pkg`|**FreeBSD Quarterly**. Uses stable, tested packages. | Most users. Matches Linux Docker behavior. |
24
+
|`pkg-latest`|**FreeBSD Latest**. Rolling package updates. | Newest FreeBSD packages. |
25
+
26
+
## Prerequisites
27
+
28
+
Before deploying, ensure your host environment is ready. See the [Quick Start Guide](https://daemonless.io/guides/quick-start) for host setup instructions.
29
+
17
30
## Deployment
18
31
19
32
### Podman Compose
@@ -27,10 +40,52 @@ services:
27
40
- TS_AUTHKEY=tskey-auth-xxxx
28
41
- TS_EXTRA_ARGS=--advertise-exit-node
29
42
volumes:
30
-
- /path/to/containers/tailscale:/config
43
+
- "/path/to/containers/tailscale:/config"
31
44
restart: unless-stopped
32
45
```
33
46
47
+
### AppJail Director
48
+
49
+
**.env**:
50
+
51
+
```
52
+
DIRECTOR_PROJECT=tailscale
53
+
TS_AUTHKEY=tskey-auth-xxxx
54
+
TS_EXTRA_ARGS=--advertise-exit-node
55
+
```
56
+
57
+
**appjail-director.yml**:
58
+
59
+
```yaml
60
+
options:
61
+
- virtualnet: ':<random> default'
62
+
- nat:
63
+
services:
64
+
tailscale:
65
+
name: tailscale
66
+
options:
67
+
- container: 'boot args:--pull'
68
+
oci:
69
+
user: root
70
+
environment:
71
+
- TS_AUTHKEY: !ENV '${TS_AUTHKEY}'
72
+
- TS_EXTRA_ARGS: !ENV '${TS_EXTRA_ARGS}'
73
+
volumes:
74
+
- tailscale: /config
75
+
volumes:
76
+
tailscale:
77
+
device: '/path/to/containers/tailscale'
78
+
```
79
+
80
+
**Makejail**:
81
+
82
+
```
83
+
ARG tag=latest
84
+
85
+
OPTION overwrite=force
86
+
OPTION from=ghcr.io/daemonless/tailscale:${tag}
87
+
```
88
+
34
89
### Podman CLI
35
90
36
91
```bash
@@ -57,21 +112,25 @@ podman run -d --name tailscale \
0 commit comments