File: docker-compose.yml

package info (click to toggle)
podman-compose 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,004 kB
  • sloc: python: 10,946; sh: 107; javascript: 48; makefile: 13
file content (26 lines) | stat: -rw-r--r-- 556 bytes parent folder | download | duplicates (2)
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
version: "3"
services:
  test_build_ssh_map:
    build:
      context: ./context
      dockerfile: Dockerfile
      ssh:
        default:
        id1: "./id_ed25519_dummy"
        id2: "./agent_dummy.sock"
    image: my-alpine-build-ssh-map
    command:
      - cat
      - /result.log
  test_build_ssh_array:
    build:
      context: ./context
      dockerfile: Dockerfile
      ssh:
        - default
        - "id1=./id_ed25519_dummy"
        - "id2=./agent_dummy.sock"
    image: my-alpine-build-ssh-array
    command:
      - cat
      - /result.log