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 (14 lines) | stat: -rw-r--r-- 312 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: "3"
services:
    test:
      build: ./context
      image: build-fail-img
    test_no_dockerfile:
      build:
        context: ./context_no_file
      image: busybox
    test_no_custom_dockerfile:
      build:
        context: ./context_no_file
        dockerfile: Dockerfile-alt
      image: busybox