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 43f2981 commit a232a61Copy full SHA for a232a61
development/docker-compose.yml
@@ -51,6 +51,7 @@ services:
51
- ${IP}:8080:80
52
links:
53
- db:db
54
+
55
db:
56
build:
57
context: ./bin/${DATABASE} #change db if required in .env file
@@ -65,5 +66,16 @@ services:
65
66
MYSQL_USER: root
67
MYSQL_ROOT_PASSWORD: "${DB_ROOT_PASSWORD}"
68
69
+ composer:
70
+ image: composer/composer
71
+ container_name: cc-base-composer
72
+ working_dir: /var/www/html/wp-content/themes/creativecommons-base/
73
+ command: sh -c "composer install"
74
+ restart: "no"
75
+ depends_on:
76
+ - wp
77
+ volumes:
78
+ - ../:/var/www/html/wp-content/themes/creativecommons-base
79
80
volumes:
81
db_data:
0 commit comments