Skip to content

Instantly share code, notes, and snippets.

@alexishida
Created October 10, 2025 12:29
Show Gist options
  • Select an option

  • Save alexishida/f076a38167b8c406ac1d2c90edc822f3 to your computer and use it in GitHub Desktop.

Select an option

Save alexishida/f076a38167b8c406ac1d2c90edc822f3 to your computer and use it in GitHub Desktop.
Docker application installations
# 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