Update docker images

This commit is contained in:
Babibubebon 2022-11-07 00:19:49 +09:00
parent 415e50ad5b
commit a4001d32d2
Signed by: Babibubebon
GPG key ID: 78C8FB2A2FEA1EE3
4 changed files with 3 additions and 3 deletions

View file

@ -14,7 +14,7 @@ services:
context: . context: .
dockerfile: ./docker/nginx/Dockerfile dockerfile: ./docker/nginx/Dockerfile
ports: ports:
- 80:80 - 127.0.0.1:80:80
depends_on: depends_on:
- php - php
volumes: volumes:

View file

@ -1,4 +1,4 @@
FROM nginx:1.19-alpine FROM nginx:mainline-alpine
ADD ./docker/nginx/default.conf /etc/nginx/conf.d/default.conf ADD ./docker/nginx/default.conf /etc/nginx/conf.d/default.conf
ADD ./public /var/www/lodfe/public ADD ./public /var/www/lodfe/public

View file

@ -1,4 +1,4 @@
FROM php:7.4-fpm-alpine FROM php:8.1-fpm-alpine
ARG WORKDIR=/var/www/lodfe ARG WORKDIR=/var/www/lodfe
WORKDIR ${WORKDIR} WORKDIR ${WORKDIR}