-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.bibigrid.yml
50 lines (47 loc) · 1.14 KB
/
docker-compose.dev.bibigrid.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
40
41
42
43
44
45
46
47
48
49
50
version: '3.5'
services:
simplevm-client:
container_name: simplevm-client
build:
context: .
dockerfile: Dockerfile
ports:
- ${CLIENT_PORT}:9090
env_file:
- .env
environment:
- TERM=xterm-256color
tty: true
volumes:
- ./simple_vm_client/config/config_local.yml:/code/simple_vm_client/config.yml
- ./simple_vm_client/keys/localhost/server.pem:/code/simple_vm_client/keys/server.pem
command: python3 VirtualMachineServer.py /code/simple_vm_client/config.yml
networks:
- portal
client_redis:
container_name: simplevm_client_redis
image: redis:7.4.1
expose:
- "6379"
networks:
- portal
simplevm_bibigrid:
container_name: simplevm_bibigrid
image: quay.io/denbicloud/bibigrid:${BIBIGRID_TAG}
env_file:
- .env
volumes:
- ./scripts/bibigrid/clear_keys_cron:/etc/crontabs/root
environment:
- server.enableHttps=false
- server.enableHttp=true
expose:
- "8080"
networks:
- portal
networks:
portal:
name: portal
driver: bridge
driver_opts:
com.docker.network.driver.mtu: 1440