forked from vrana/adminer
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yaml
32 lines (31 loc) · 1.21 KB
/
docker-compose.yaml
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
version: '3'
services:
cql_adminer_adapter:
image: covenantsql/covenantsql:latest
container_name: cql_adminer_adapter
restart: always
logging:
driver: 'json-file'
options:
max-size: '10m'
environment:
COVENANT_ROLE: adapter
COVENANT_CONF: /etc/testnet_conf/config.yaml
COVENANTSQL_ADAPTER_ADDR: 0.0.0.0:80
volumes:
- ~/.cql/private.key:/etc/testnet_conf/private.key
- ~/.cql/config.yaml:/etc/testnet_conf/config.yaml
cql_adminer:
image: covenantsql/adminer:latest
container_name: cql_adminer
restart: always
ports:
- 11149:80
logging:
driver: 'json-file'
options:
max-size: '10m'
links:
- cql_adminer_adapter
environment:
CQL_ADAPTER_SERVER: cql_adminer_adapter