mirror of
https://github.com/ent/ent.git
synced 2026-05-24 09:31:56 +03:00
Summary: Pull Request resolved: https://github.com/facebookexternal/fbc/pull/1229 Reviewed By: alexsn Differential Revision: D16539934 fbshipit-source-id: b3a8bf1f1be6f65ad3f649cd921ea20fc24182bf
20 lines
318 B
YAML
20 lines
318 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
|
|
mysql:
|
|
image: mysql:5.7.23
|
|
environment:
|
|
MYSQL_DATABASE: test
|
|
MYSQL_ROOT_PASSWORD: pass
|
|
healthcheck:
|
|
test: mysql -ppass -e "show databases"
|
|
ports:
|
|
- 3306:3306
|
|
|
|
neptune:
|
|
build: gremlin-server
|
|
restart: on-failure
|
|
ports:
|
|
- 8182:8182
|