Skip to content

Instantly share code, notes, and snippets.

@Aldi888
Aldi888 / wordpress-6-2-2-docker-compose.yml
Created October 12, 2024 17:00 — forked from erikyuzwa/wordpress-6-2-2-docker-compose.yml
Wordpress 6.2.2 Docker Compose for Local Development
# create a local .env file with the following 4 properties:
#
# MYSQL_DATABASE=<something>
# MYSQL_USER=<something>
# MYSQL_PASSWORD=<something>
# MYSQL_ROOT_PASSWORD=<something>
#
# Note: I have had a LOT of issues working with anything newer then Docker Desktop v4.26.1
# If you're on something newer, then double check against this release.
#
@Aldi888
Aldi888 / Contained Database
Last active June 11, 2018 11:30
itocean.co.uk Contained Database
sp_configure ‘contained database authentication’, 1;
GO
RECONFIGURE;
GO