Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 20 additions & 13 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
version: '2.2'
services:
mysql:
image: mysql:5.6
platform: linux/amd64
restart:
always
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: ctldbpw
MYSQL_DATABASE: ctldb
MYSQL_USER: ctldb
MYSQL_PASSWORD: ctldbpw
mem_limit: 536870912
mysql:
image: mysql:5.6
# If you are on arm64 and experiencing issues with the tests (hangs,
# connection reset) then try the following in order:

# - stopping and removing all downloaded container images
# - ensuring you have the latest Docker Desktop version
# - factory reset your Docker Desktop settings

# If you are still running into issues please post in #help-infra-seg.
platform: linux/amd64
restart: always
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: ctldbpw
MYSQL_DATABASE: ctldb
MYSQL_USER: ctldb
MYSQL_PASSWORD: ctldbpw
mem_limit: 536870912