-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
30 lines (27 loc) · 1.41 KB
/
docker-compose.yaml
File metadata and controls
30 lines (27 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# docker-compose.yaml
version: '2' # version of docker-compose to use
services: # configuring each container
db: # name of our mysql container
image: mysql:5.7 # which image to pull, in this case specifying v. 5.7
volumes: # data to map to the container
- ./mysql-dump:/docker-entrypoint-initdb.d # where to find our data -- we'll talk more about this
restart: always # always restart the container after reboot
environment: # environment variables -- mysql options in this case
MYSQL_ROOT_PASSWORD: wordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress: # name of our wordpress container
depends_on: # container dependencies that need to be running first
- db
image: wordpress:latest # image used by our container
ports:
- "8000:80" # setting our ports for networking
restart: always
environment:
WORDPRESS_DB_HOST: db:3306 # default mysql port
WORDPRESS_DB_PASSWORD: wordpress # matches the password set in the db container
volumes: # this is where we tell Docker what to pay attention to
- ./wp-content/themes/my-theme:/var/www/html/wp-content/themes/my-theme # mapping our custom theme to the container
- ./wp-content/plugins:/var/www/html/wp-content/plugins # map our plugins to the container
- ./wp-content/uploads:/var/www/html/wp-content/uploads # map our uploads to the container