This commit is contained in:
Alexander Böhm 2021-12-20 19:40:05 +01:00
parent c7cf070fb9
commit 46f5c724a5
1 changed files with 31 additions and 9 deletions

View File

@ -1,16 +1,40 @@
# gluon super node with docker
```
cd /vagrant_data
docker-compose up -d batman_network fastd_server dhcpd_v4 wireguard
```
## Prepare
Prepare test VM with vagrant
```
cd /vagrant_data
docker-compose build
docker-compose up -t 0 -d batman_network fastd_server dhcpd_v4 wireguard
vagrant up supernode
```
Change to vagrant VM
```
vagrant ssh supernode
```
## Run
```
# iff using vagrant
cd /vagrant_data
# build all images
docker-compose build
# start
docker-compose up -t 0 -d batman fastd_server dhcpd_v4 wireguard
```
## Test with OpenWRT node
```
vagrant up node
```
## Preparations for native install
### Docker
Docker logs retenation + ipv6 support
```
@ -24,5 +48,3 @@ Docker logs retenation + ipv6 support
"fixed-cidr-v6": "fcff:ffff:ffff:ffff::/64"
}
```
# vim: expandtab tabstop=2 shiftwidth=2