mirror of
https://github.com/tiennm99/docker-images.git
synced 2026-05-20 01:25:32 +00:00
89 lines
3.4 KiB
Docker
89 lines
3.4 KiB
Docker
FROM ubuntu:12.04
|
|
|
|
LABEL maintainer="Tien Nguyen Minh <tiennm99@outlook.com>"
|
|
|
|
RUN sed -i 's|http://archive.ubuntu.com/ubuntu/|http://old-releases.ubuntu.com/ubuntu/|g' /etc/apt/sources.list && \
|
|
sed -i 's|http://security.ubuntu.com/ubuntu|http://old-releases.ubuntu.com/ubuntu|g' /etc/apt/sources.list
|
|
|
|
# Install dependencies:
|
|
# runit: for container process management
|
|
# wget: for downloading .deb
|
|
# python-httplib2: used by CLI tools
|
|
# chrpath: for fixing curl, below
|
|
# tzdata: timezone info used by some N1QL functions
|
|
# Additional dependencies for system commands used by cbcollect_info:
|
|
# lsof: lsof
|
|
# lshw: lshw
|
|
# sysstat: iostat, sar, mpstat
|
|
# net-tools: ifconfig, arp, netstat
|
|
# numactl: numactl
|
|
RUN apt-get update && \
|
|
apt-get install -yq runit wget python-httplib2 chrpath tzdata \
|
|
lsof lshw sysstat net-tools numactl librtmp0 && \
|
|
# apt-get install -yq libssl0.9.8 && \
|
|
# apt-get install -yq dos2unix && \
|
|
apt-get install -yq libc6 && \
|
|
apt-get autoremove && apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
ARG CB_VERSION=2.5.2
|
|
ARG CB_RELEASE_URL=https://packages.couchbase.com/releases
|
|
ARG CB_PACKAGE=couchbase-server-enterprise_2.5.2_x86_64.deb
|
|
ARG CB_SHA256=27a79a65758023c34ed900e8ef8c54bab4a65f4c84b7c94359cba910800a4b19
|
|
|
|
ENV PATH=$PATH:/opt/couchbase/bin:/opt/couchbase/bin/tools:/opt/couchbase/bin/install
|
|
|
|
# Create Couchbase user with UID 1000 (necessary to match default
|
|
# boot2docker UID)
|
|
RUN groupadd -g 1000 couchbase && useradd couchbase -u 1000 -g couchbase -M
|
|
|
|
# Install couchbase
|
|
RUN export INSTALL_DONT_START_SERVER=1 && \
|
|
wget -N $CB_RELEASE_URL/$CB_VERSION/$CB_PACKAGE && \
|
|
echo "$CB_SHA256 $CB_PACKAGE" | sha256sum -c - && \
|
|
dpkg -i ./$CB_PACKAGE && rm -f ./$CB_PACKAGE
|
|
|
|
# Add runit script for couchbase-server
|
|
COPY scripts/run /etc/service/couchbase-server/run
|
|
# RUN dos2unix /etc/service/couchbase-server/run && \
|
|
# chmod +x /etc/service/couchbase-server/run
|
|
RUN chown -R couchbase:couchbase /etc/service
|
|
|
|
# Add dummy script for commands invoked by cbcollect_info that
|
|
# make no sense in a Docker container
|
|
COPY scripts/dummy.sh /usr/local/bin/
|
|
# RUN dos2unix /usr/local/bin/dummy.sh && \
|
|
# chmod +x /usr/local/bin/dummy.sh
|
|
RUN ln -s dummy.sh /usr/local/bin/iptables-save && \
|
|
ln -s dummy.sh /usr/local/bin/lvdisplay && \
|
|
ln -s dummy.sh /usr/local/bin/vgdisplay && \
|
|
ln -s dummy.sh /usr/local/bin/pvdisplay
|
|
|
|
# Fix curl RPATH
|
|
RUN chrpath -r '$ORIGIN/../lib' /opt/couchbase/bin/curl
|
|
|
|
# Add bootstrap script
|
|
COPY scripts/entrypoint.sh /
|
|
# RUN dos2unix /entrypoint.sh && \
|
|
# chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["couchbase-server", "-- -kernel global_enable_tracing false -noinput"]
|
|
|
|
# 8091: Couchbase Web console, REST/HTTP interface
|
|
# 8092: Views, queries, XDCR
|
|
# 8093: Query services (4.0+)
|
|
# 8094: Full-text Search (4.5+)
|
|
# 8095: Analytics (5.5+)
|
|
# 8096: Eventing (5.5+)
|
|
# 11207: Smart client library data node access (SSL)
|
|
# 11210: Smart client library/moxi data node access
|
|
# 11211: Legacy non-smart client library data node access
|
|
# 18091: Couchbase Web console, REST/HTTP interface (SSL)
|
|
# 18092: Views, query, XDCR (SSL)
|
|
# 18093: Query services (SSL) (4.0+)
|
|
# 18094: Full-text Search (SSL) (4.5+)
|
|
# 18095: Analytics (SSL) (5.5+)
|
|
# 18096: Eventing (SSL) (5.5+)
|
|
EXPOSE 8091 8092 8093 8094 8095 8096 11207 11210 11211 18091 18092 18093 18094 18095 18096
|
|
VOLUME /opt/couchbase/var
|