728x90
반응형
우분투 18.04 도커 설치
- Community Edition (CE) : 개발자나 작은 팀들에게 이상적인 버전이며 무료로 사용할 수 있습니다.
roseline124.github.io/kuberdocker/2019/07/17/docker-study02.html
subicura.com/2017/01/19/docker-guide-for-beginners-2.html
subicura.com/2017/02/10/docker-guide-for-beginners-create-image-and-deploy.html
도커 기본 명령어
우분투 14.04에서 도커 설치
www.whatwant.com/entry/Docker-Install-Ubuntu-1404-64bit-using-Download
도커 네트워크 사용법
www.daleseo.com/docker-networks/
도커 Dockerfile 작성
FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y nginx
RUN apt-get install -y software-properties-common
RUN add-apt-repository ppa:ondrej/php
RUN apt-get install -y php7.4-fpm
RUN apt-get install -y php7.4-curl php7.4-intl php7.4-mbstring php7.4-mysql php7.4-readline php7.4-xml php7.4-zip php7.4-gd php7.4-memcached php7.4-redis
RUN apt-get install -y vim
RUN apt-get install -y locales
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
EXPOSE 80
EXPOSE 443
docker build -t (이미지이름) (경로)
반응형
도커 자바 서버
https://greendreamtrre.tistory.com/434
728x90
반응형
'프로그램이야기 > Docker' 카테고리의 다른 글
Docker, docker compose를 이용한 Spring boot, Mysql 배포 환경 구성해보기 (0) | 2021.06.28 |
---|
댓글