...
Code Block | ||||
---|---|---|---|---|
| ||||
FROM ubuntu:18.04MAINTAINER04 MAINTAINER ALTIBASE RUN sed -e '56 i\root\t\t soft\t nofile\t\t 1048576 \nroot\t\t hard\t nofile\t\t 1048576 \nroot\t\t soft\t nproc\t\t unlimited \nroot\t\t hard\t nproc\t\t unlimited \n' -i /etc/security/limits.conf; \ echo "vm.swappiness = 1" >> /etc/sysctl.conf; \ echo "kernel.sem = 20000 32000 512 5029" >> /etc/sysctl.conf; WORKDIR /home/altibase COPY set_altibase.env /home/altibase COPY docker-entrypoint.sh /home/altibase COPY ./altibase_home /home/altibase/altibase_home EXPOSE 20300 30300 30310 ENTRYPOINT ["/bin/bash", "/home/altibase/docker-entrypoint.sh"] |
...