이것은 매우 표준적인 도커 컨테이너/설정입니다.
index.php
docker compose에 대한 표준 호출만으로 phpinfo();
브라우저에서 이 파일을 제공할 수 없나요?
도커파일
FROM php:7.4-fpm
# Copy composer.lock and composer.json
COPY composer.lock composer.json /var/www/
# Set working directory
WORKDIR /var/www
# Install dependencies
RUN apt-get update && apt-get install -y \
build-essential \
libpng-dev \
libjpeg62-turbo-dev \
libfreetype6-dev \
locales \
libzip-dev \
zip \
jpegoptim optipng pngquant gifsicle \
vim \
unzip \
git \
curl
# Clear cache
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
# Install extensions
RUN docker-php-ext-install pdo_mysql zip exif pcntl
#RUN docker-php-ext-configure gd --with-gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ --with-png-dir=/usr/include/
RUN docker-php-ext-configure gd --with-freetype --with-jpeg
# PHP 7.4 ^^
RUN docker-php-ext-install gd
# Install composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
# Add user for laravel application
RUN groupadd -g 1000 www
RUN useradd -u 1000 -ms /bin/bash -g www www
# Copy existing application directory contents
COPY . /var/www
# Copy existing application directory permissions
COPY --chown=www:www . /var/www
# Change current user to www
USER www
# Expose port 9000 and start php-fpm server
EXPOSE 9000
CMD ["php-fpm"]
docker-compose.yaml
version: '3'
services:
#PHP Service
app_a:
build:
context: .
dockerfile: Dockerfile
image: digitalocean.com/php
container_name: app_a
restart: unless-stopped
tty: true
environment:
SERVICE_NAME: app_a
SERVICE_TAGS: dev
working_dir: /var/www
volumes:
- ./:/var/www
- ./php/local.ini:/usr/local/etc/php/conf.d/local.ini
networks:
- app-network
#Nginx Service
webserver_a:
image: nginx:alpine
container_name: webserver_a
restart: unless-stopped
tty: true
ports:
- "8211:80"
- "443:443"
volumes:
- ./:/var/www
- ./nginx/conf.d/:/etc/nginx/conf.d/
networks:
- app-network
#MySQL Service
db_a:
image: mysql:5.7.22
container_name: db_a
restart: unless-stopped
tty: true
ports:
- "3236:3306"
environment:
MYSQL_DATABASE: my_local
MYSQL_ROOT_PASSWORD: password
SERVICE_TAGS: dev
SERVICE_NAME: mysql
volumes:
- dbdata:/var/lib/mysql
- ./mysql/my.cnf:/etc/mysql/my.cnf
networks:
- app-network
#Docker Networks
networks:
app-network:
driver: bridge
#Volumes
volumes:
dbdata:
driver: local
모든 도커 서비스 컨테이너가 제대로 실행되고 있으며 docker exec -it 3a234d1f384e sh
예를 들어 셸에서 로그인 할 수 있습니다.
브라우저에서 파일을 제공하는 데 도움을 주시면 좋을 것 같습니다. 미리 감사드립니다.
편집하다
/nginx/conf.d/app.conf
server {
listen 80;
index index.php index.html;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
root /var/www/public;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass app_a:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
gzip_static on;
}
}
답변1
위의 특정 설정의 경우. 내 실수는 폴더 안에 index.php
넣고 거기에서 제공해야 한다는 것입니다.public