mirror of
https://github.com/nextcloud/nextcloud.com.git
synced 2026-01-12 15:44:37 +00:00
29 lines
545 B
YAML
29 lines
545 B
YAML
version: "3.2"
|
|
services:
|
|
web:
|
|
build: .
|
|
links:
|
|
- mysql
|
|
- redis
|
|
environment:
|
|
- WORDPRESS_DB_PASSWORD=password
|
|
- WP_DEBUG=false
|
|
- PHP_XDEBUG_ENABLED=1
|
|
- XDEBUG_CONFIG=remote_host=10.254.254.254
|
|
ports:
|
|
- "80:80"
|
|
working_dir: /var/www/html
|
|
volumes:
|
|
- ${PWD}:/var/www/html/wp-content/themes/nextcloud.com
|
|
|
|
mysql:
|
|
image: mysql:5.7
|
|
environment:
|
|
- MYSQL_ROOT_PASSWORD=password
|
|
- MYSQL_DATABASE=nextcloud
|
|
|
|
redis:
|
|
image: redis
|
|
ports:
|
|
- "6379:6379"
|