mirror of
				https://github.com/linka-cloud/d2vm.git
				synced 2025-11-04 03:21:48 +00:00 
			
		
		
		
	docs: add README.md and examples centos/rhel: fix dracut initramfs Signed-off-by: Adphi <philippe.adrien.nousse@gmail.com>
		
			
				
	
	
		
			14 lines
		
	
	
		
			574 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			574 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM centos
 | 
						|
 | 
						|
RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* && \
 | 
						|
    sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
 | 
						|
 | 
						|
RUN yum update -y
 | 
						|
RUN yum install -y qemu-guest-agent openssh-server && \
 | 
						|
    echo "PermitRootLogin yes" >> /etc/ssh/sshd_config && \
 | 
						|
    systemctl enable dbus.service && \
 | 
						|
    systemctl set-default graphical.target
 | 
						|
 | 
						|
RUN echo "NETWORKING=yes" >> /etc/sysconfig/network && \
 | 
						|
    echo -e 'DEVICE="eth0"\nONBOOT="yes"\nBOOTPROTO="dhcp"\n' > /etc/sysconfig/network-scripts/ifcfg-eth0
 |