일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 윈도우10
- Rocky
- iptime
- 알리익스프레스
- 킹북이초월
- mysql
- KB국민카드
- nginx
- 티스토리
- 스톤에이지
- 복현오거리
- OpenWrt
- 자바스크립트
- 리눅스
- centos
- Apache
- 알뜰폰
- jQuery
- Linux
- 가상서버호스팅
- proxmox
- 아파치
- php
- SKT
- 소비전력
- 시놀로지
- KB증권
- 보르비스초월
- 램가스초월
- PHP-FPM
- Today
- Total
목록2025/05 (2)
맛집 여행 캠핑 일상 생활
[Linux] Docker 각 버전별 php-apache 설치 방법
도커 php5.6 php7.4 php8.2 아파치 설치 방법입니다.하나의 이미지에 php+apache가 같이 있는 docker image입니다.docker-compose.ymlservices: php56: #image: php:5.6-apache container_name: php56-apache build: context: . dockerfile: ./Dockerfile-php56 ports: - "8156:80" volumes: - ./www:/var/www/html - ./httpd/logs:/etc/apache2/logs - ./httpd/conf/example.conf:/etc/apache2/sites-enable..
LINUX
2025. 5. 20. 11:58
[Linux] Docker nginx with php-fpm 설치 방법
도커 허브에는 nginx + php-fpm이 같이 있는 이미지를 못찾겠네요~따로 따로 조합해서 사용하는 방법 말고 하나의 이미지에서 서비스하는 방법입니다.1. docker-compose.ymlservices: nginx: #image: nginx:latest container_name: nginx-php82 build: context: . dockerfile: ./Dockerfile-nginx restart: always ports: - "8080:80" volumes: - ./www:/var/www/html - ./nginx/logs:/var/log/nginx - ./nginx/conf:/etc/nginx/conf...
LINUX
2025. 5. 20. 11:48