Skip to content

Commit

Permalink
mu init plus database
Browse files Browse the repository at this point in the history
  • Loading branch information
oshaughnessy committed May 22, 2017
1 parent f57ea3e commit 82df036
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
@@ -1,2 +1,8 @@
# mu-wordpress
Run WordPress on Amazon ECS and RDS with mu

## References:

* https://hub.docker.com/r/_/wordpress/
* https://www.sitepoint.com/how-to-use-the-official-docker-wordpress-image/a

11 changes: 11 additions & 0 deletions buildspec.yml
@@ -0,0 +1,11 @@
version: 0.1

phases:
build:
commands:
- echo '...replace with real build commands...'

artifacts:
files:
- '**/*'

22 changes: 22 additions & 0 deletions mu.yml
@@ -0,0 +1,22 @@
environments:
- name: dev
- name: production

service:
name: mu-wordpress
port: 8080
pathPatterns:
- /*
pipeline:
source:
provider: GitHub
repo: oshaughnessy/mu-wordpress

database:
name: wordpress
iamAuthentication: true

environment:
#SPRING_DATASOURCE_USERNAME: ${DatabaseMasterUsername}
#SPRING_DATASOURCE_PASSWORD: ${DatabaseMasterPassword}
SPRING_DATASOURCE_URL: jdbc:mysql://${DatabaseEndpointAddress}:${DatabaseEndpointPort}/${DatabaseName}

0 comments on commit 82df036

Please sign in to comment.