forked from archivesspace/archivesspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-dev.yml
39 lines (38 loc) · 1.13 KB
/
docker-compose-dev.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# docker-compose -f docker-compose-dev.yml build
# docker-compose -f docker-compose-dev.yml up --detach
version: '3.8'
services:
db1:
container_name: as_dev_db
image: mysql:8.0
command: --character-set-server=UTF8MB4 --innodb_buffer_pool_size=2G --innodb_buffer_pool_instances=2 --log_bin_trust_function_creators=1
ports:
- "3306:3306"
env_file:
- .env.docker.db
volumes:
- ./build/mysql_db_fixtures:/docker-entrypoint-initdb.d
db2:
container_name: as_test_db
image: mysql:8.0
command: --character-set-server=UTF8MB4 --innodb_buffer_pool_size=2G --innodb_buffer_pool_instances=2 --log_bin_trust_function_creators=1
ports:
- "3307:3306"
env_file:
- .env.docker.db
solr1:
container_name: as_dev_solr
build:
context: ./solr
image: archivesspace/solr:latest
command: solr-create -p 8983 -c archivesspace -d archivesspace
ports:
- "8983:8983"
solr2:
container_name: as_test_solr
build:
context: ./solr
image: archivesspace/solr:latest
command: solr-create -p 8983 -c archivesspace -d archivesspace
ports:
- "8984:8983"