File: compose-test-with-version.yaml

package info (click to toggle)
golang-github-compose-spec-compose-go 2.4.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,628 kB
  • sloc: makefile: 36; sh: 8
file content (24 lines) | stat: -rw-r--r-- 309 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
version: "2"
name: compose-test-with-version

volumes:
  data:
    driver: local

networks:
  front: {}

services:
  web:
    build: ./Dockerfile
    networks:
      - front
      - default
    volumes_from:
      - other

  other:
    image: busybox:1.31.0-uclibc
    command: top
    volumes:
      - /data