We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81cf721 commit f5009e9Copy full SHA for f5009e9
docker-compose.yml
@@ -0,0 +1,20 @@
1
+wordpress:
2
+ build: .
3
+ links:
4
+ - db:mysql
5
+ expose:
6
+ - 80
7
+ ports:
8
+ - "8000:80"
9
+ environment:
10
+ VIRTUAL_HOST: 'unique_wp_query.dev'
11
+ WORDPRESS_DB_PASSWORD: 'dev'
12
+ WORDPRESS_DEBUG: 1
13
+ volumes:
14
+ - .:/var/www/html/wp-content/plugins/unique_wp_query
15
+db:
16
+ image: mariadb
17
18
+ - "${MYSQL_PORT}:${MYSQL_PORT}"
19
20
+ MYSQL_ROOT_PASSWORD: 'dev'
0 commit comments