Skip to content

Instantly share code, notes, and snippets.

@bc0d3
Last active March 27, 2022 16:28
Show Gist options
  • Save bc0d3/33a3bb99538c29473f71efc2652ca995 to your computer and use it in GitHub Desktop.
Save bc0d3/33a3bb99538c29473f71efc2652ca995 to your computer and use it in GitHub Desktop.
Wordpress + mariadb Working in Mac m1
version: '3'
services:
# Database
db:
image: mariadb:latest
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MARIADB_ROOT_PASSWORD: password
MARIADB_DATABASE: wordpress
MARIADB_USER: wordpress
MARIADB_PASSWORD: wordpress
networks:
- wpsite
# Wordpress
wordpress:
depends_on:
- db
image: wordpress:5.7.2-php7.4
ports:
- '8000:80'
restart: always
volumes: ['./:/var/www/html']
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
networks:
- wpsite
networks:
wpsite:
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment