Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Ant_Containers
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mayi-operation
Ant_Containers
Commits
f5a50a09
Commit
f5a50a09
authored
Nov 15, 2018
by
ChongmingDu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Install local test service
parents
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
72 additions
and
0 deletions
+72
-0
docker-compose.yml
+72
-0
No files found.
docker-compose.yml
0 → 100644
View file @
f5a50a09
version
:
'
2.1'
services
:
db
:
container_name
:
mysql
restart
:
on-failure
image
:
mysql:5.6
mem_limit
:
300M
ports
:
-
3306:3306
volumes
:
-
./mysql_data:/var/lib/mysql
environment
:
MYSQL_ROOT_PASSWORD
:
1q2w3e4r
MYSQL_USER
:
test
MYSQL_PASSWORD
:
1q2w3e4r
cache
:
container_name
:
redis
restart
:
on-failure
image
:
redis:5
mem_limit
:
300M
ports
:
-
6379:6379
volumes
:
-
./redis_data:/data
zoo
:
container_name
:
zookeeper
restart
:
on-failure
image
:
zookeeper
mem_limit
:
300M
ports
:
-
2181:2181
volumes
:
-
./zookeeper_data:/data
mongo
:
container_name
:
mongo
restart
:
on-failure
image
:
mongo
mem_limit
:
300M
environment
:
MONGO_INITDB_ROOT_USERNAME
:
root
MONGO_INITDB_ROOT_PASSWORD
:
1q2w3e4r
ports
:
-
27017:27017
volumes
:
-
./mongo_data:/data
mq
:
container_name
:
activemq
restart
:
on-failure
image
:
webcenter/activemq
mem_limit
:
512m
ports
:
-
8161:8161
-
61616:61616
-
61613:61613
volumes
:
-
./activemq_data:/data
-
./activemq_log:/var/log/activemq
volumes
:
mysql_data
:
redis_data
:
zookeeper_data
:
mongo_data
:
activemq_data
:
activemq_log
:
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment