Zack Williams | 0aaee3c | 2017-10-09 15:33:22 -0700 | [diff] [blame] | 1 | --- |
Matteo Scandolo | 60b640f | 2017-08-08 13:05:22 -0700 | [diff] [blame] | 2 | # 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 Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 16 | # docker_images.yml |
| 17 | # master list of docker images used by imagebuilder.py |
| 18 | |
| 19 | # tag to set on every container built/downloaded |
| 20 | |
| 21 | docker_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 | |
| 29 | pull_only_images: |
| 30 | - "gliderlabs/consul-server:0.6" |
| 31 | - "gliderlabs/registrator:v7" |
| 32 | - "nginx:1.13" |
Jonathan Hart | 0e8d8bb | 2017-09-12 16:45:58 -0700 | [diff] [blame] | 33 | - "onosproject/onos:1.10.6" |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 34 | - "redis:3.2" |
Zack Williams | 13b0d4f | 2017-08-23 16:32:41 -0700 | [diff] [blame] | 35 | - "node:7.9.0" # remove once the issue with node:candidate is resolved |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 36 | |
| 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 | |
| 51 | buildable_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 Williams | eeeb6dd | 2017-07-13 10:50:28 -0700 | [diff] [blame] | 67 | - name: xosproject/xos-libraries |
| 68 | repo: xos |
| 69 | path: "containers/xos" |
| 70 | dockerfile: "Dockerfile.libraries" |
| 71 | context: "../.." |
| 72 | |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 73 | - 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 Williams | eeeb6dd | 2017-07-13 10:50:28 -0700 | [diff] [blame] | 102 | - name: xosproject/xos-tosca |
| 103 | repo: xos-tosca |
| 104 | |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 105 | - 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 Baker | 3033386 | 2017-09-08 13:51:55 -0700 | [diff] [blame] | 126 | - name: xosproject/addressmanager-synchronizer |
| 127 | repo: addressmanager |
| 128 | path: "xos/synchronizer" |
| 129 | dockerfile: "Dockerfile.synchronizer" |
| 130 | |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 131 | - 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 Bavier | 208d498 | 2017-08-31 07:55:58 -0700 | [diff] [blame] | 142 | repo: olt-service |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 143 | 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 Bavier | 208d498 | 2017-08-31 07:55:58 -0700 | [diff] [blame] | 152 | repo: vtn-service |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 153 | 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 | |