Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
54610dd7c8
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
18 lines (17 sloc) 354 Bytes
# PHP Web Server
wordpress:
container_name: cornerstone-wordpress
image: wordpress:latest
ports:
- "8000:80"
volumes:
- ./:/var/www/html/wp-content/themes/cornerstone/
links:
- mysql:mysql
restart: always
# MySQL Server
mysql:
container_name: cornerstone-mysql
image: mysql
environment:
MYSQL_ROOT_PASSWORD: 'wordpress'