Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d1f1b46

Browse files
committedApr 1, 2025·
updating stuff
1 parent b729562 commit d1f1b46

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed
 

‎composes/mariadb/docker-compose.yaml

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1-
version: '3.8'
2-
31
services:
42
mariadb:
5-
image: mariadb:latest
3+
image: mariadb
64
container_name: mariadb
75
environment:
86
MARIADB_ROOT_PASSWORD: my-secret-pw
97
ports:
108
- "3306:3306"
11-
volumes:
12-
- mariadb_data:/var/lib/mysql
139

14-
volumes:
15-
mariadb_data:
10+
phpmyadmin:
11+
image: phpmyadmin/phpmyadmin
12+
container_name: phpmyadmin
13+
environment:
14+
PMA_HOST: mariadb
15+
ports:
16+
- "8080:80"

0 commit comments

Comments
 (0)
Please sign in to comment.