Skip to content
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.

Commit

Permalink
use different docker-compose files for different purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
Coos Baakman committed Aug 5, 2021
1 parent a4cdf2d commit 0ed01f5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
11 changes: 11 additions & 0 deletions docker-compose-learn.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: "3"
services:
deeprank:
build:
context: .
dockerfile: Dockerfile
volumes:
- "/home/cbaakman/deeprank-runs:/runs"
- "/home/cbaakman/variants-grid.hdf5:/data/variants.hdf5:ro"
working_dir: /runs/run1
command: python /usr/src/app/scripts/learn.py /data/variants.hdf5
17 changes: 17 additions & 0 deletions docker-compose-preprocess.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: "3"
services:
deeprank:
build:
context: .
dockerfile: Dockerfile
volumes:
- "/home/cbaakman/deeprank-runs:/runs"
- "/home/cbaakman/deeprank-datasets:/datasets"
- "/home/cbaakman/pdb:/pdb"
- "/home/cbaakman/pssm-gen:/pssm-gen"
working_dir: /runs/run-mp
environment:
- MASTER_ADDR=0.0.0.0
- MASTER_PORT=1088
- RANK=0
- WORLD_SIZE=1
12 changes: 0 additions & 12 deletions docker-compose.yml

This file was deleted.

0 comments on commit 0ed01f5

Please sign in to comment.