Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
esa746 PHP 8.1 にアップデート
Browse files Browse the repository at this point in the history
  • Loading branch information
tarohida committed Feb 24, 2022
1 parent b2c7128 commit 9579ca7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-fpm
FROM php:8.1-fpm

MAINTAINER Taro Hida <[email protected]>

Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
version: '3'
services:
web:
image: nginx
image: nginx:stable
volumes:
- ./.docker/conf/nginx/default.conf:/etc/nginx/conf.d/default.conf
- .:/var/www/html
ports:
- 80:80
- '80:80'
restart: always
depends_on:
- php
Expand All @@ -18,18 +18,18 @@ services:
- ./.docker/conf/php/xdebug.ini:/usr/local/etc/php/conf.d/xdebug.ini
- .:/var/www/html
composer:
image: composer
image: composer:2.2
volumes:
- .:/app
command: install
db:
image: postgres:10.1
image: postgres:13.6
restart: always
environment:
- POSTGRES_DB=${DB_NAME}
- POSTGRES_USER=${DB_USER}
- POSTGRES_PASSWORD=${DB_PASSWORD}
ports:
- 5432:5432
- '5432:5432'
volumes:
- ./.docker/conf/postgres/:/docker-entrypoint-initdb.d/

0 comments on commit 9579ca7

Please sign in to comment.