summaryrefslogtreecommitdiffstats
path: root/docker-compose-sv.yml
blob: 82ca13e3ee380752dddc98c549ee4f229f911baa (plain)
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
server_apache:
  extends:
    file: Services/apache/docker-compose.yml
    service: server
  ports:
    - "80:80"
    - "443:443"

server_php:
  extends:
    file: Services/php/docker-compose.yml
    service: server
  ports:
    - "81:80"
    - "444:443"

server_nodejs:
  extends:
    file: Services/nodejs/docker-compose.yml
    service: server
  ports:
    - "82:8000"

server_mariadb:
  extends:
    file: Services/mariadb/docker-compose.yml
    service: server
  ports:
    - "3306:3306"

server_postgres:
  extends:
    file: Services/postgres/docker-compose.yml
    service: server
  ports:
    - "5432:5432"

server_mongo:
  extends:
    file: Services/mongo/docker-compose.yml
    service: server
  ports:
    - "27017:27017"
    - "28017:28017"

server_ooconv:
  extends:
    file: Services/ooconv/docker-compose.yml
    service: server
  ports:
    - "2002:2002"

server_memcache:
  extends:
    file: Services/memcache/docker-compose.yml
    service: server
  ports:
    - "11211:11211"