Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0.0rc1-fpm
FROM php:8.3.0RC5-fpm

# Install system dependencies
RUN apt-get update && apt-get install -y git
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ The following three separate service containers will be used:

- Set the MySQL environment variables creating a `.env` file based on the `.env.example` file.

```bash
copy .env.example .env
```

- Build the app image with the following command:

```bash
Expand Down
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ services:

# MySQL database service
db:
image: mysql:5.7
image: mysql:8
container_name: mysql-db
ports:
- "3306:3306"
command: --default-authentication-plugin=caching_sha2_password
environment:
MYSQL_ROOT_PASSWORD: ${DB_PASSWORD}
MYSQL_DATABASE: ${DB_DATABASE}
Expand Down