File: docker-compose.yml

package info (click to toggle)
patator 1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 856 kB
  • sloc: python: 3,979; sh: 103; makefile: 5
file content (59 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download | duplicates (3)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
version: "3"
services:
  unix:
    build: testing/unix
    image: patator-unix-testing
#   ports:
#      - "21:21"
#      - "22:22"
#      - "23:23"
#      - "25:25"
#      - "79:79"
#      - "80:80"
#      - "106:106"
#      - "110:110"
#      - "139:139"
#      - "143:143"
#      - "389:389"
#      - "445:445"
#      - "513:513"
#      - "636:636"
#      - "993:993"
#      - "995:995"
#      - "3306:3306"
#      - "4444:4444"
#      - "5432:5432"
#      - "5900:5900"
#      - "8009:8009"
#      - "8080:8080"
#      - "161:161/udp"
    volumes:
      - .:/opt/patator

  oracle:
    image: oracleinanutshell/oracle-xe-11g
    environment:
       - ORACLE_ENABLE_XDB=true
    ports:
      - "1521:1521"

  mssql:
    image: mcr.microsoft.com/mssql/server:2019-latest
    environment:
      - ACCEPT_EULA=Y
      - SA_PASSWORD=Password1
    ports:
      - "1433:1433"

  patator:
    build: .
    image: patator
    depends_on:
      - unix
      - oracle
      - mssql
    environment:
      - DISPLAY
    volumes:
      - .:/opt/patator
      - /tmp/.X11-unix:/tmp/.X11-unix