This commit is contained in:
Refactorian
2024-03-03 21:17:36 +09:00
committed by GitHub
parent c9bcacdfb1
commit 4ecef5f729
2 changed files with 20 additions and 2 deletions

View File

@@ -33,8 +33,16 @@
### phpMyAdmin
- URL: http://localhost:8080
- Username: `root`
- Password: `root`
- Server: `db`
- Username: `refactorian`
- Password: `refactorian`
- Database: `refactorian`
### Adminer
- URL: http://localhost:9090
- Server: `db`
- Username: `refactorian`
- Password: `refactorian`
- Database: `refactorian`
### Basic docker compose commands

View File

@@ -79,6 +79,16 @@ services:
volumes:
- .docker/phpmyadmin/sessions:/sessions
####################################################################################################
# Adminer
####################################################################################################
adminer:
image: adminer
ports:
- 9090:8080
depends_on:
- db
####################################################################################################
# Mailpit
####################################################################################################