Revision #8 has been created by
rackycz on Oct 8, 2025, 1:22:41 PM with the memo:
edit
« previous (#7) next (#9) »
Changes
Title
unchanged
Yii3 - How to start
Category
unchanged
Tutorials
Yii version
unchanged
3.0
Tags
unchanged
Content
changed
[...]
Your project now does not contain any DB. Let's add MariaDB and Adminer (DB browser) into file docker/dev/compose.yml:
In my case the resulting file looks like this:
```
services:
app:
container_name: yii3api_php[...]
volumes:
mariadb_data:
```
Plus add/modify these variables in file docker/.env
- DEV_PORT=9080
- DEV_ADMINER_PORT=9081[...]