mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2025-03-11 23:14:09 +00:00
21 lines
375 B
Markdown
21 lines
375 B
Markdown
|
# Running supervisor in the dev env
|
||
|
|
||
|
## Set up config
|
||
|
Edit `tools/dind/config.json` to contain the values for a staging config.json.
|
||
|
|
||
|
## Start the supervisor instance
|
||
|
```
|
||
|
make ARCH=i386 run-supervisor
|
||
|
```
|
||
|
|
||
|
## View the containers logs
|
||
|
```
|
||
|
logs supervisor -f
|
||
|
```
|
||
|
|
||
|
## View the supervisor logs
|
||
|
```
|
||
|
enter supervisor
|
||
|
tail /var/log/supervisor-log/resin_supervisor_stdout.log -f
|
||
|
```
|