Skip to content

Commit

Permalink
deploy(compose): initial compose file
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdoret committed Feb 8, 2024
1 parent 3dc2a92 commit bc0eee7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions deploy/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: '2'
services:

minio:
image: docker.io/bitnami/minio:2024
ports:
- '8080:8080'
- '8081:8081'
volumes:
- 'minio_data:/bitnami/minio/data'
networks:
- modo-network

htsget:
image: ghcr.io/umccr/htsget-rs:dev-latest
networks:
- modo-network

modo-server:
build: ./modo-server
ports:
- '80:80'
- '9000:9000'
networks:
- modo-network

volumes:
minio_data:
driver: local

networks:
modo-network

0 comments on commit bc0eee7

Please sign in to comment.