Skip to content

Commit

Permalink
Using docker --init for small process with signal forwarding.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlord committed Apr 2, 2024
1 parent b895511 commit 9360f10
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions compose.env.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "3.7"

# This file specifies the environment that will be used to run each script language.
# It can use the default GEO BON images, or compile it's own images.

Expand All @@ -9,13 +7,13 @@ services:
# build:
# context: ./runners
# dockerfile: r-dockerfile
command: sh # Override default command to avoid launching R-studio server.
init: true
tty: true # Needed to keep the container alive, waiting for requests.

runner-julia:
image: geobon/bon-in-a-box:runner-julia
# build:
# context: ./runners
# dockerfile: julia-dockerfile
command: sh # Avoids launching julia session that will not be used.
init: true # Avoids launching julia session that will not be used.
tty: true # Needed to keep the container alive, waiting for requests.

0 comments on commit 9360f10

Please sign in to comment.