forked from Wildsong/docker-arcgis-enterprise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
59 lines (50 loc) · 1.11 KB
/
docker-compose.yml
File metadata and controls
59 lines (50 loc) · 1.11 KB
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: '2'
services:
server:
container_name: server
build: arcgis-server
image: geoceg/arcgis-server
ports:
- "6080:6080"
- "6443:6443"
volumes:
- "/srv/arcgis/config-store:/home/arcgis/server/usr/config-store"
- "/srv/arcgis/directories:/home/arcgis/server/usr/directories"
- "/srv/arcgis/logs:/home/arcgis/server/usr/logs"
networks:
arcgis.net:
portal:
container_name: portal
build: portal-for-arcgis
image: geoceg/portal-for-arcgis
ports:
- "7080:7080"
- "7443:7443"
volumes:
- /srv/arcgis/arcgisportal:/home/arcgis/portal/usr/arcgisportal
networks:
arcgis.net:
web-adaptor:
container_name: web-adaptor
build: web-adaptor
image: geoceg/web-adaptor
ports:
- "80:80"
- "443:443"
links:
- "portal"
- "server"
- "datastore"
networks:
arcgis.net:
datastore:
container_name: datastore
build: datastore
image: geoceg/datastore
ports:
- "2443:2443"
networks:
arcgis.net:
networks:
arcgis.net:
driver: bridge