File: docker-compose.yml

package info (click to toggle)
libwebservice-s3-tiny-perl 0.003-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 852 kB
  • sloc: perl: 137; sh: 5; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 469 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
version: '2'
services:
    minio:
        command:
            - server
            - /tmp
        environment:
            MINIO_ACCESS_KEY: access_key
            MINIO_SECRET_KEY: secret_key
        image: minio/minio
        logging:
            driver: none
        tmpfs: /tmp
    test:
        command:
            - prove
            - -lv
            - xt
        depends_on:
            - minio
        image: perl:5.26
        volumes:
            - .:/root