tomcat과 PostgreSQL이 포함 된 Docker 이미지 만들기
5821 단어 PostgreSQL아파치도커Tomcat
Dockerfile 만들기
ubuntu의 이미지를 기반으로 PostgreSQL 9.3을 설치하는 예가 실려 있었기 때문에 이것을 참고로 ubuntu 대신 tomcat 포함 이미지를 기반으로합니다.
Dockerfile
FROM tomcat:9.0-jre8
MAINTAINER [email protected]
# Add the PostgreSQL PGP key to verify their Debian packages.
# It should be the same key as https://www.postgresql.org/media/keys/ACCC4CF8.asc
RUN apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net:80 --no-tty --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8
# Add PostgreSQL's repository. It contains the most recent stable release
# of PostgreSQL, ``9.6``.
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list
# Install ``python-software-properties``, ``software-properties-common`` and PostgreSQL 9.6
# There are some warnings (in red) that show up during the build. You can hide
# them by prefixing each apt-get statement with DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y software-properties-common postgresql-9.6 postgresql-client-9.6 postgresql-contrib-9.6
# Note: The official Debian and Ubuntu images automatically ``apt-get clean``
# after each ``apt-get``
# Run the rest of the commands as the ``postgres`` user created by the ``postgres-9.6`` package when it was ``apt-get installed``
USER postgres
# Create a PostgreSQL role named ``docker`` with ``docker`` as the password and
# then create a database `docker` owned by the ``docker`` role.
# Note: here we use ``&&\`` to run commands one after the other - the ``\``
# allows the RUN command to span multiple lines.
RUN /etc/init.d/postgresql start &&\
psql --command "CREATE USER docker WITH SUPERUSER PASSWORD 'docker';" &&\
createdb -O docker docker
# Adjust PostgreSQL configuration so that remote connections to the
# database are possible.
RUN echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/9.6/main/pg_hba.conf
# And add ``listen_addresses`` to ``/etc/postgresql/9.6/main/postgresql.conf``
RUN echo "listen_addresses='*'" >> /etc/postgresql/9.6/main/postgresql.conf
# Expose the PostgreSQL port
EXPOSE 5432
# Add VOLUMEs to allow backup of config, logs and databases
VOLUME ["/etc/postgresql", "/var/log/postgresql", "/var/lib/postgresql"]
# Set the default command to run when starting the container
CMD ["/usr/lib/postgresql/9.6/bin/postgres", "-D", "/var/lib/postgresql/9.6/main", "-c", "config_file=/etc/postgresql/9.6/main/postgresql.conf"]
FROM tomcat:9.0-jre8
Java8을 사용하고 싶기 때문에 -jre8 첨부.
RUN apt-key adv …
--no-tty
를 추가했습니다. 이것이 없으면 gpg: cannot open '/dev/tty': No such device or address
라는 에러가 나왔기 때문에 ( 참고 ).RUN apt-get update && apt-get install …
9.3
를 9.6
로 바꿉니다.python-software-properties
삭제. software-properties-common
그냥 끝나게 된 것 같다.Docker 이미지 만들기
docker build ./pg9_tomcat9 -t pg9_tomcat9
컨테이너 생성 및 postgres 실행
docker run -d --rm -p 8888:8080 -p:5432:5432 --name pg9_tomcat9_1 pg9_tomcat9
컨테이너 시작 확인
docker ps
PostgreSQL 연결 확인
Docker 호스트에서 psql로 연결해 봅니다.
psql -h localhost -U docker -d docker
# Password: docker
docker=# \l
tomcat 시작
docker exec -d pg9_tomcat9_1 bash catalina.sh run
tomcat 동작 확인
호스트 웹 브라우저에서
http://localhost:8888/
를 엽니다.※
Dockerfile
에 tomcat도 기동하도록(듯이) CMD
를 기술하고 싶지만 아무런 일이 없었다 (tomcat 를 기동시키면 postgres 가 기동하지 않게 되어 버렸다).기타
컨테이너에 bash로 들어가기
docker exec -it -u 0 pg9_tomcat9_1 bash
-u 0
를 붙이지 않으면 postgres
사용자로 로그인해 버린다.tomcat 중지
docker exec pg9_tomcat9_1 bash catalina.sh stop
docker run 때의 볼륨 지정은 자유롭게.
Reference
이 문제에 관하여(tomcat과 PostgreSQL이 포함 된 Docker 이미지 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/amay077/items/c632968746247f054c53텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)