Skip to content

Instantly share code, notes, and snippets.

View asafedainez's full-sized avatar
🖥️
Estudando Muito

Asafe Dainez asafedainez

🖥️
Estudando Muito
View GitHub Profile
@asafedainez
asafedainez / docker-compose.yml
Created September 17, 2022 16:53
Docker compose Mongo com mongo express
version: '3.5'
services:
mongo:
image: mongo:5.0.10
container_name: mongo
# volumes:
# - ./db_data:/data/db
ports:
- 27017:27017
@asafedainez
asafedainez / docker-compose.yml
Created September 17, 2022 16:52
Docker Compose MySQL
version: '3'
services:
mysql:
image: mysql
command: --default-authentication-plugin=mysql_native_password
container_name: mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: root