-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
63 lines (58 loc) · 1.34 KB
/
docker-compose.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
51
52
53
54
55
56
57
58
59
60
61
62
63
version: '3.9'
services:
openbabel:
build:
context: openbabel
dockerfile: Dockerfile
image: firesimulations/openbabel:3.1.1
container_name: openbabel
tty: true
stdin_open: true
networks:
- openbabel_net
rdkit:
build:
context: rdkit
dockerfile: Dockerfile
image: firesimulations/rdkit:2024.03.1
container_name: rdkit
tty: true
stdin_open: true
networks:
- openbabel_net
autodocking:
build:
context: autodocking
dockerfile: Dockerfile
image: firesimulations/autodocking:2024.4.14
container_name: autodocking
tty: true
stdin_open: true
volumes:
- ./autodocking/bin:/ubin
- ./autodocking/specs.json:/tmp/specs.json
- ./autodocking/specs.txt:/tmp/specs.txt
environment:
- COMPOSE_DOCKER_CLI_BUILD=1
- DOCKER_BUILDKIT=1
- DOCKER_DEFAULT_PLATFORM=linux/amd64,linux/arm64
deploy:
resources:
reservations:
devices:
- capabilities: [gpu]
networks:
- openbabel_net
autodocking-test:
build:
context: autodocking-test
dockerfile: Dockerfile
image: firesimulations/autodocking-test:0.0.1
container_name: autodocking-test
tty: true
stdin_open: true
networks:
- openbabel_net
networks:
openbabel_net:
driver: bridge