blob: 748381b5ce992c7fdd7011b2dc54b5cdf5c74827 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
fedora:
extends:
file: OS/docker-compose.yml
service: fedora
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"
#pma:
# build: Applications/phpmyadmin/
# container_name: "startx-app-phpmyadmin"
# ports:
# - "82:80"
# - "445:443"
#
#rockmongo:
# build: Applications/rockmongo/
# container_name: "startx-app-rockmongo"
# ports:
# - "83:80"
# - "446:443"
|