Skip to content

Instantly share code, notes, and snippets.

@crydotsnake
Last active November 7, 2022 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crydotsnake/ca14612247dcd0818861ee8bceeac3b2 to your computer and use it in GitHub Desktop.
Save crydotsnake/ca14612247dcd0818861ee8bceeac3b2 to your computer and use it in GitHub Desktop.
MariaDB Environment for Docker
version: '3.8'
services:
db:
image: mariadb
restart: always
environment:
MYSQL_DATABASE: 'db'
# So you don't have to use root, but you can if you like
MYSQL_USER: 'user'
# You can use whatever password you like
MYSQL_PASSWORD: 'password'
# Password for root access
MYSQL_ROOT_PASSWORD: 'password'
ports:
# <Port exposed> : < MySQL Port running inside container>
- '3306:3306'
expose:
# Opens port 3306 on the container
- '3306'
# Where our data will be persisted
volumes:
- my-db:/var/lib/mysql
# Names our volume
volumes:
my-db:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment