mirror of
https://github.com/netbootxyz/docker-netbootxyz.git
synced 2025-08-07 06:37:43 +02:00
Removes deprecated npm option, sets user to nbxyz for tftpd, adds script for testing build
7 lines
275 B
Bash
Executable File
7 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo Building local core environment image...
|
|
docker build -t docker-netbootxyz .
|
|
echo Entering docker-netbootxyz shell... type exit to leave container...
|
|
docker run -v /var/run/docker.sock:/var/run/docker.sock -v $(pwd):/shell -t -i docker-netbootxyz /bin/bash
|