Elaborate on how to set up dev env

This commit is contained in:
Joost Rijneveld
2022-11-27 14:02:40 +01:00
parent 7d82a4a924
commit a211e3ae4a
5 changed files with 62 additions and 8 deletions

11
dev/docker-compose.yml Normal file
View File

@@ -0,0 +1,11 @@
version: '3'
services:
mysql:
image: mysql:latest
ports:
- 3306:3306
environment:
MYSQL_USER: 'hashru'
MYSQL_PASSWORD: 'hashru'
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_DATABASE: 'hashru_pics'