Skip to content

Instantly share code, notes, and snippets.

@ezaurum
Created February 20, 2018 09:26
Show Gist options
  • Save ezaurum/1c206ef794d23d549218e06c58462f1a to your computer and use it in GitHub Desktop.
Save ezaurum/1c206ef794d23d549218e06c58462f1a to your computer and use it in GitHub Desktop.
테스트용 도커 컴포즈
version: "3.1"
services:
db:
image: mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: test1234
volumes:
- ./resources:/docker-entrypoint-initdb.d
ports:
- 3306:3306
command:
- --character-set-server=utf8mb4
- --collation-server=utf8mb4_unicode_ci
- --skip-character-set-client-handshake
adminer:
image: adminer
restart: always
ports:
- 8089:8080
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment