Created
October 10, 2025 12:29
-
-
Save alexishida/f076a38167b8c406ac1d2c90edc822f3 to your computer and use it in GitHub Desktop.
Docker application installations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # MariaDB | |
| docker run -d \ | |
| --name=mariadb \ | |
| --restart=always \ | |
| -v /etc/localtime:/etc/localtime:ro \ | |
| -e MYSQL_ROOT_PASSWORD=senha \ | |
| -v /storage/mariadb:/var/lib/mysql \ | |
| mariadb:latest | |
| # PhpmyAdmin | |
| docker run -d \ | |
| --name phpmyadmin \ | |
| -e PMA_HOST=dbhost \ | |
| -p 8080:80 \ | |
| --link mysql_db_server:db \ | |
| phpmyadmin | |
| # Metabase | |
| docker run -d \ | |
| --name=metabase \ | |
| --restart=always \ | |
| -p 9696:3000 \ | |
| -v /etc/localtime:/etc/localtime:ro \ | |
| metabase/metabase |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment