From b1759c12d324c00a8663f6352660f84694a599cc Mon Sep 17 00:00:00 2001 From: Niklas Reimer Date: Thu, 14 Nov 2024 13:34:44 +0100 Subject: [PATCH] update compse file --- compose.yml | 18 ++++++++++++++++++ docker-compose.yml | 17 ----------------- 2 files changed, 18 insertions(+), 17 deletions(-) create mode 100644 compose.yml delete mode 100644 docker-compose.yml diff --git a/compose.yml b/compose.yml new file mode 100644 index 0000000..8addd47 --- /dev/null +++ b/compose.yml @@ -0,0 +1,18 @@ +services: + mtbexporter: + restart: unless-stopped + build: ./ + image: ghcr.io/buschlab/mtbexporter:latest + command: + - /app/mtbexporter.jar + - /app/settings.yaml + volumes: + - "./settings.yaml:/app/settings.yaml:z" + - "./output:/output:z" + - "./.state:/.state:z" + networks: + - mtb-cbioportal_cbioportal_net + +networks: + mtb-cbioportal_cbioportal_net: + external: true \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index a09591f..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,17 +0,0 @@ -version: "3" -services: - mtbexporter: - restart: unless-stopped - build: ./ - image: ghcr.io/buschlab/mtbexporter:latest - command: "/app/settings.yaml" - volumes: - - "./settings.yaml:/app/settings.yaml" - - "./output:/output" - - "./.state:/.state" - networks: - - miracum-cbioportal_cbioportal_net - -networks: - miracum-cbioportal_cbioportal_net: - external: true \ No newline at end of file