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