blob: 51693d6776a4237dc1516566c171dda45810983b [file] [log] [blame]
Zack Williams0aaee3c2017-10-09 15:33:22 -07001---
Matteo Scandolo60b640f2017-08-08 13:05:22 -07002# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Zack Williamsce63eb02017-02-28 10:46:22 -070016# docker_images.yml
17# master list of docker images used by imagebuilder.py
18
19# tag to set on every container built/downloaded
20
21docker_build_tag: "candidate"
22
23# pull_only_images: images pulled and used directly without changes
24# you must include a tag (':1.0') on these images to pull the correct version
25#
26# do not include images in this list that are parents of images
27# in buildable_images - those are automatically pulled
28
29pull_only_images:
30 - "gliderlabs/consul-server:0.6"
31 - "gliderlabs/registrator:v7"
32 - "nginx:1.13"
Jonathan Hart0e8d8bb2017-09-12 16:45:58 -070033 - "onosproject/onos:1.10.6"
Zack Williamsce63eb02017-02-28 10:46:22 -070034 - "redis:3.2"
Zack Williams13b0d4f2017-08-23 16:32:41 -070035 - "node:7.9.0" # remove once the issue with node:candidate is resolved
Zack Williamsce63eb02017-02-28 10:46:22 -070036
37# buildable_images - list of images that we build from Dockerfiles
38#
39# required:
40# name: Name of docker image
41# repo: git repo name (not the path! not what it's renamed to be in the repo manifest!)
42# optional:
43# dockerfile: Name of Dockerfile. Default: "Dockerfile"
44# path: Path to parent directory of containing dockerfile, relative to. Default: "."
45# context: Path to docker build context, relative to path item. Default: "."
46# component: dict of sub-component paths to copy into build context.
47# repo: Name of component repo to copy from (required)
48# path: path in to copy from. Relative to component repo. Default "."
49# dest: destination path to copy components to, relative to context
50
51buildable_images:
52 - name: xosproject/xos-base
53 repo: xos
54 path: "containers/xos"
55 dockerfile: "Dockerfile.base"
56
57 - name: xosproject/xos-postgres
58 repo: xos
59 path: "containers/postgresql"
60
61 - name: xosproject/xos
62 repo: xos
63 path: "containers/xos"
64 dockerfile: "Dockerfile.xos"
65 context: "../.."
66
Zack Williamseeeb6dd2017-07-13 10:50:28 -070067 - name: xosproject/xos-libraries
68 repo: xos
69 path: "containers/xos"
70 dockerfile: "Dockerfile.libraries"
71 context: "../.."
72
Zack Williamsce63eb02017-02-28 10:46:22 -070073 - name: xosproject/xos-corebuilder
74 repo: xos
75 path: "containers/xos"
76 dockerfile: "Dockerfile.corebuilder"
77 context: "../.."
78
79 - name: xosproject/chameleon
80 repo: xos
81 path: "containers/chameleon"
82 dockerfile: "Dockerfile.chameleon"
83 components:
84 - repo: chameleon
85 dest: tmp.chameleon
86
87 - name: xosproject/xos-client
88 repo: xos
89 path: "containers/xos"
90 dockerfile: "Dockerfile.client"
91 context: "../.."
92 components:
93 - repo: chameleon
94 dest: containers/xos/tmp.chameleon
95
96 - name: xosproject/xos-synchronizer-base
97 repo: xos
98 path: "containers/xos"
99 dockerfile: "Dockerfile.synchronizer-base"
100 context: "../.."
101
Zack Williamseeeb6dd2017-07-13 10:50:28 -0700102 - name: xosproject/xos-tosca
103 repo: xos-tosca
104
Zack Williamsce63eb02017-02-28 10:46:22 -0700105 - name: xosproject/xos-ws
106 repo: xos-rest-gw
107
108 - name: xosproject/xos-gui
109 repo: xos-gui
110
111 - name: xosproject/xos-gui-extension-builder
112 repo: xos-gui
113 dockerfile: "Dockerfile.xos-gui-extension-builder"
114
115 - name: xosproject/gui-extension-rcord
116 repo: rcord
117 path: "xos/gui"
118
119 - name: xosproject/gui-extension-vtr
120 repo: vtr
121 path: "xos/gui"
122
123 - name: xosproject/gui-extension-sample
124 repo: xos-sample-gui-extension
125
Scott Baker30333862017-09-08 13:51:55 -0700126 - name: xosproject/addressmanager-synchronizer
127 repo: addressmanager
128 path: "xos/synchronizer"
129 dockerfile: "Dockerfile.synchronizer"
130
Zack Williamsce63eb02017-02-28 10:46:22 -0700131 - name: xosproject/openstack-synchronizer
132 repo: openstack
133 path: "xos/synchronizer"
134 dockerfile: "Dockerfile.synchronizer"
135
136 - name: xosproject/onos-synchronizer
137 repo: onos-service
138 path: "xos/synchronizer"
139 dockerfile: "Dockerfile.synchronizer"
140
141 - name: xosproject/volt-synchronizer
Andy Bavier208d4982017-08-31 07:55:58 -0700142 repo: olt-service
Zack Williamsce63eb02017-02-28 10:46:22 -0700143 path: "xos/synchronizer"
144 dockerfile: "Dockerfile.synchronizer"
145
146 - name: xosproject/vrouter-synchronizer
147 repo: vrouter
148 path: "xos/synchronizer"
149 dockerfile: "Dockerfile.synchronizer"
150
151 - name: xosproject/vtn-synchronizer
Andy Bavier208d4982017-08-31 07:55:58 -0700152 repo: vtn-service
Zack Williamsce63eb02017-02-28 10:46:22 -0700153 path: "xos/synchronizer"
154 dockerfile: "Dockerfile.synchronizer"
155
156 - name: xosproject/vtr-synchronizer
157 repo: vtr
158 path: "xos/synchronizer"
159 dockerfile: "Dockerfile.synchronizer"
160
161 - name: xosproject/vsg-synchronizer
162 repo: vsg
163 path: "xos/synchronizer"
164 dockerfile: "Dockerfile.synchronizer"
165
166 - name: xosproject/fabric-synchronizer
167 repo: fabric
168 path: "xos/synchronizer"
169 dockerfile: "Dockerfile.synchronizer"
170
171 - name: xosproject/exampleservice-synchronizer
172 repo: exampleservice
173 path: "xos/synchronizer"
174 dockerfile: "Dockerfile.synchronizer"
175