mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 21:43:21 +00:00 
			
		
		
		
	Real systemd requires this. docker-systemctl-replacement currently doesn’t but maybe it will later. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
		
			
				
	
	
		
			60 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ubuntu:18.04
 | 
						||
 | 
						||
ARG UBUNTU_MIRROR
 | 
						||
 | 
						||
# Basic packages and dependencies of docker-systemctl-replacement
 | 
						||
RUN echo locales locales/default_environment_locale select en_US.UTF-8 | debconf-set-selections \
 | 
						||
    && echo locales locales/locales_to_be_generated select "en_US.UTF-8 UTF-8" | debconf-set-selections \
 | 
						||
    && { [ ! "$UBUNTU_MIRROR" ] || sed -i "s|http://\(\w*\.\)*archive\.ubuntu\.com/ubuntu/\? |$UBUNTU_MIRROR |" /etc/apt/sources.list; } \
 | 
						||
    # This restores man pages and other documentation that have been
 | 
						||
    # stripped from the default Ubuntu cloud image and installs
 | 
						||
    # ubuntu-minimal and ubuntu-standard.
 | 
						||
    #
 | 
						||
    # This makes sense to do because we're using this image as a
 | 
						||
    # development environment, not a minimal production system.
 | 
						||
    && printf 'y\n\n' | unminimize \
 | 
						||
    && apt-get install --no-install-recommends -y \
 | 
						||
           ca-certificates \
 | 
						||
           curl \
 | 
						||
           locales \
 | 
						||
           lsb-release \
 | 
						||
           openssh-server \
 | 
						||
           python3 \
 | 
						||
           sudo \
 | 
						||
           systemd \
 | 
						||
    && rm -rf /var/lib/apt/lists/*
 | 
						||
 | 
						||
ARG VAGRANT_UID
 | 
						||
 | 
						||
RUN \
 | 
						||
    # We use https://github.com/gdraheim/docker-systemctl-replacement
 | 
						||
    # to make services we install like postgres, redis, etc. normally
 | 
						||
    # managed by systemd start within Docker, which breaks normal
 | 
						||
    # operation of systemd.
 | 
						||
    dpkg-divert --add --rename /bin/systemctl \
 | 
						||
    && curl -so /bin/systemctl 'https://raw.githubusercontent.com/gdraheim/docker-systemctl-replacement/b0588e003562f9a8eb76c98512c6d61146a81980/files/docker/systemctl3.py' \
 | 
						||
    && chmod +x /bin/systemctl \
 | 
						||
    && ln -nsf /bin/true /usr/sbin/policy-rc.d \
 | 
						||
    && mkdir -p /run/sshd \
 | 
						||
    # docker-systemctl-replacement doesn’t work with template units yet:
 | 
						||
    # https://github.com/gdraheim/docker-systemctl-replacement/issues/62
 | 
						||
    && ln -ns /lib/systemd/system/postgresql@.service /etc/systemd/system/postgresql@10-main.service \
 | 
						||
    && ln -s /etc/systemd/system/postgresql@10-main.service /etc/systemd/system/multi-user.target.wants/ \
 | 
						||
    # redis fails to start with the default configuration if IPv6 is disabled:
 | 
						||
    # https://github.com/antirez/redis/pull/5598
 | 
						||
    && dpkg-divert --add --rename /etc/default/redis-server \
 | 
						||
    && printf 'ULIMIT=65536\nDAEMON_ARGS="/etc/redis/redis.conf --bind 127.0.0.1"\n' > /etc/default/redis-server \
 | 
						||
    && mkdir /etc/systemd/system/redis-server.service.d \
 | 
						||
    && printf '[Service]\nExecStart=\nExecStart=/usr/bin/redis-server /etc/redis/redis.conf --bind 127.0.0.1\n' > /etc/systemd/system/redis-server.service.d/override.conf \
 | 
						||
    # Set up the vagrant user and its SSH key (globally public)
 | 
						||
    && useradd -ms /bin/bash -u "$VAGRANT_UID" vagrant \
 | 
						||
    && mkdir -m 700 ~vagrant/.ssh \
 | 
						||
    && curl -so ~vagrant/.ssh/authorized_keys 'https://raw.githubusercontent.com/hashicorp/vagrant/be7876d83644aa6bdf7f951592fdc681506bcbe6/keys/vagrant.pub' \
 | 
						||
    && chown -R vagrant: ~vagrant/.ssh \
 | 
						||
    && echo 'vagrant ALL=(ALL) NOPASSWD:ALL' > /etc/sudoers.d/vagrant
 | 
						||
 | 
						||
CMD ["/bin/systemctl"]
 | 
						||
 | 
						||
EXPOSE 22
 | 
						||
EXPOSE 9991
 |