This file will setup Wordpress, MySQL & PHPMyAdmin with a single command. Add the code below to a file called "docker-compose.yaml" and run the command
$ docker-compose up -d
# To Tear Down
$ docker-compose down --volumes
| import React, { Component } from 'react'; | |
| import { Platform, StyleSheet, Text, View } from 'react-native'; | |
| import OrgChart from './Orgchart'; | |
| import NodeComponent from './NodeComponent'; | |
| const instructions = Platform.select({ | |
| ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu', | |
| android: 'Double tap R on your keyboard to reload,\n' + 'Shake or press menu button for dev menu', | |
| }); |
| version: '3.1' | |
| services: | |
| wordpress: | |
| image: wordpress | |
| restart: always | |
| ports: | |
| - 8080:80 | |
| volumes: |