sathishg | b5d1c18 | 2017-07-13 14:20:19 +0530 | [diff] [blame] | 1 | # Copyright 2016 the original author or authors. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
sathishg | b5d1c18 | 2017-07-13 14:20:19 +0530 | [diff] [blame] | 14 | |
| 15 | #DockerFile to Create Fluentd Forwards inside cord-voltha |
David K. Bainbridge | 3d5b22d | 2018-01-22 12:57:52 -0800 | [diff] [blame] | 16 | FROM fluent/fluentd:v0.12.42 |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 17 | MAINTAINER Voltha Community <info@opennetworking.org> |
| 18 | |
| 19 | RUN apk add --update bash |
sathishg | b5d1c18 | 2017-07-13 14:20:19 +0530 | [diff] [blame] | 20 | COPY fluentd_config/fluent.conf /fluentd/etc/ |
Sergio Slobodrian | 8725ea8 | 2017-08-27 23:47:41 -0400 | [diff] [blame] | 21 | COPY fluentd_config/fluent-agg.conf /fluentd/etc/ |
David K. Bainbridge | 1246305 | 2018-01-19 09:26:09 -0800 | [diff] [blame] | 22 | COPY docker/config/wait_for_it.sh /bin/wait_for_it.sh |
| 23 | COPY fluentd_config/entrypoint.sh /bin/entrypoint.sh |
| 24 | RUN chmod 755 /bin/wait_for_it.sh /bin/entrypoint.sh |