Skip to content

Instantly share code, notes, and snippets.

View luisangelorjr's full-sized avatar
🖖
Focusing

Luis Angelo Rodrigues Jr luisangelorjr

🖖
Focusing
View GitHub Profile
@luisangelorjr
luisangelorjr / docker-compose.yaml
Created February 3, 2024 18:38
Uma pequena pesquisa usando o docker compose para wordpress
services:
db:
# We use a mariadb image which supports both amd64 & arm64 architecture
image: mariadb:10.6.4-focal
# If you really want to use MySQL, uncomment the following line
#image: mysql:8.0.27
command: '--default-authentication-plugin=mysql_native_password'
volumes:
- db_data:/var/lib/mysql
restart: always
#!/bin/bash
sed --version