Last active
August 6, 2022 07:15
-
-
Save Canx/afd18727f83bbe14452035a5a5cbed02 to your computer and use it in GitHub Desktop.
Fichero docker-compose con Wordpress, MariaDB y phpmyadmin
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
version: "3.9" | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: somewordpress | |
MYSQL_DATABASE: wordpress | |
MYSQL_USER: wordpress | |
MYSQL_PASSWORD: wordpress | |
wordpress: | |
depends_on: | |
- db | |
image: wordpress:latest | |
volumes: | |
- wordpress_data:/var/www/html | |
ports: | |
- "8080:80" | |
restart: always | |
environment: | |
WORDPRESS_DB_HOST: db:3306 | |
WORDPRESS_DB_USER: wordpress | |
WORDPRESS_DB_PASSWORD: wordpress | |
WORDPRESS_DB_NAME: wordpress | |
phpmyadmin: | |
depends_on: | |
- db | |
image: phpmyadmin | |
restart: always | |
ports: | |
- "8081:80" | |
environment: | |
- PMA_ARBITRARY=1 | |
volumes: | |
db_data: {} | |
wordpress_data: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment