mirror of
				https://github.com/byReqz/netdiscover-docker.git
				synced 2025-11-04 05:51:31 +00:00 
			
		
		
		
	changed startup and daemonized tmux
This commit is contained in:
		@@ -1,10 +1,12 @@
 | 
				
			|||||||
FROM debian:sid
 | 
					FROM debian:sid
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN apt-get update
 | 
					RUN apt-get update
 | 
				
			||||||
RUN apt-get install -y curl jq netdiscover
 | 
					RUN apt-get install -y curl jq netdiscover tmux
 | 
				
			||||||
RUN curl -s https://api.github.com/repos/yudai/gotty/releases/latest | jq -r '.assets[].browser_download_url' | grep "gotty_linux_amd64.tar.gz" | xargs curl -L -o gotty_linux_amd64.tar.gz
 | 
					RUN curl -s https://api.github.com/repos/yudai/gotty/releases/latest | jq -r '.assets[].browser_download_url' | grep "gotty_linux_amd64.tar.gz" | xargs curl -L -o gotty_linux_amd64.tar.gz
 | 
				
			||||||
RUN tar xvfz gotty_linux_amd64.tar.gz
 | 
					RUN tar xvfz gotty_linux_amd64.tar.gz
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					ENV TERM=xterm
 | 
				
			||||||
COPY run.sh ./run.sh
 | 
					COPY run.sh ./run.sh
 | 
				
			||||||
RUN chmod +x ./run.sh
 | 
					RUN chmod +x ./run.sh
 | 
				
			||||||
 | 
					RUN tmux new-session -d -A -s netdiscover netdiscover
 | 
				
			||||||
ENTRYPOINT ["/run.sh"]
 | 
					ENTRYPOINT ["/run.sh"]
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										3
									
								
								run.sh
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								run.sh
									
									
									
									
									
								
							@@ -9,4 +9,5 @@ fi
 | 
				
			|||||||
if [[ -z "$title" ]];then
 | 
					if [[ -z "$title" ]];then
 | 
				
			||||||
	title=netdiscover-docker
 | 
						title=netdiscover-docker
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
./gotty -p "$port" $creds --title-format "$title" netdiscover
 | 
					
 | 
				
			||||||
 | 
					./gotty -p "$port" $creds --title-format "$title" tmux new-session -A -s netdiscover netdiscover
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user