Skip to content

Instantly share code, notes, and snippets.

@itoonx
Last active July 11, 2017 03:12
Show Gist options
  • Save itoonx/a6c24ce9d811ff94cb07e60b1033e82a to your computer and use it in GitHub Desktop.
Save itoonx/a6c24ce9d811ff94cb07e60b1033e82a to your computer and use it in GitHub Desktop.
version: '2'
services:
wordpress:
image: wordpress:latest
volumes:
- ./src/public_html:/var/www/html
ports:
- "8000:80"
links:
- nginx
restart: always
environment:
WORDPRESS_DB_HOST: {url}:3306
WORDPRESS_DB_NAME: {table}
WORDPRESS_DB_USER: {username}
WORDPRESS_DB_PASSWORD: {password}
nginx:
image: nginx
volumes:
- ./src:/usr/share/nginx/html
environment:
- VIRTUAL_HOST_WEIGHT=2
- VIRTUAL_HOST=*/assets/*
volumes:
db_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment