aboutsummaryrefslogtreecommitdiffstats
path: root/library/recipes/docker_compose/example_with_context/ya.make
blob: b1dde5e827b8cb4ee50e53ab2954dcc554d1f8a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
PY3TEST()

TEST_SRCS(
    test.py
)

# To use docker-compose.yml from another directory, set DOCKER_COMPOSE_FILE variable with Arcadia relative path to the file
# and do not forget to add the directory to the DATA macro, e.g.:
# SET(DOCKER_COMPOSE_FILE library/recipes/docker_compose/test/docker-compose-1.yml)
# DATA(arcadia/library/recipes/docker_compose/test)

SET(DOCKER_CONTEXT_FILE library/recipes/docker_compose/example_with_context/docker-context.yml)

INCLUDE(${ARCADIA_ROOT}/library/recipes/docker_compose/recipe.inc)

TAG(
    ya:external
    ya:force_sandbox
)

DATA(
    arcadia/library/recipes/docker_compose/example
)

DEPENDS(
    devtools/dummy_arcadia/hello_world
)

END()