Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MikeMichel/685eefc4b89eaf61d6d11661f0dec65d to your computer and use it in GitHub Desktop.
Save MikeMichel/685eefc4b89eaf61d6d11661f0dec65d to your computer and use it in GitHub Desktop.
version: "v1"
project: "wordpress"
services:
frontend:
apache:
image: "wordpress:4.6.0"
instances: 1
mem: 512
domain: "$URI"
port: 80
env:
- WORDPRESS_DB_HOST: "mysql.backend.wordpress"
- WORDPRESS_DB_USER: "$DBUSER"
- WORDPRESS_DB_PASSWORD: "$DBPASS"
volumes:
- path: "/var/www/html"
size: "8GB"
dependencies:
- "../backend/mysql"
backend:
mysql:
image: "mysql"
instances: 1
mem: 512
port: 3306
env:
- MYSQL_ROOT_PASSWORD: "$DBROOT"
- MYSQL_USER: "$DBUSER"
- MYSQL_PASSWORD: "$DBPASS"
- MYSQL_DATABASE: "wordpress"
healthchecks:
- type: "TCP"
timeout: 20
interval: 10
max_consecutive_failures: 4
grace_period_seconds: 300
volumes:
- path: "/var/lib/mysql"
size: "8GB"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment