Forked from
Alexander Holt / devops-workshop
9 commits behind the upstream repository.
-
Morten Nyang Nordseth authoredMorten Nyang Nordseth authored
docker-compose-test.yaml 325 B
# Use root/example as user/password credentials
version: '3.1'
services:
test-db:
image: mysql
command: --default-authentication-plugin=mysql_native_password
restart: always
volumes:
- ./sql:/docker-entrypoint-initdb.d
environment:
MYSQL_ROOT_PASSWORD: example
ports:
- 3306:3306