Last active
September 24, 2021 13:19
-
-
Save claudioed/63ad214811142f8bdfcea0873e705294 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Clone Go APP | |
https://github.com/claudioed/players-app.git | |
## Build | |
docker build -t claudioed/players . | |
## Clone Java APP | |
https://github.com/claudioed/tdc-inn-police-man.git | |
docker build -t claudioed/grpc . | |
### Compose | |
version: "3.9" | |
services: | |
db: | |
image: mysql:5.7 | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: | |
MYSQL_ROOT_PASSWORD: somewordpress | |
MYSQL_DATABASE: wordpress | |
MYSQL_USER: wordpress | |
MYSQL_PASSWORD: wordpress | |
wordpress: | |
depends_on: | |
- db | |
image: wordpress:latest | |
volumes: | |
- wordpress_data:/var/www/html | |
ports: | |
- "8000:80" | |
restart: always | |
environment: | |
WORDPRESS_DB_HOST: db:3306 | |
WORDPRESS_DB_USER: wordpress | |
WORDPRESS_DB_PASSWORD: wordpress | |
WORDPRESS_DB_NAME: wordpress | |
volumes: | |
db_data: {} | |
wordpress_data: {} | |
### compose | |
docker-compose up | |
### Stack Monitoramento | |
https://github.com/stefanprodan/dockprom | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice solutions!!
also, have you seen this subject ? https://grpc.io/