Piotr Biernat
680f990df8
All checks were successful
continuous-integration/drone/push Build is passing
21 lines
471 B
Docker
21 lines
471 B
Docker
FROM fluent/fluentd:v1.15.3-1.0
|
|
|
|
LABEL dev.egommerce.image.author="Piotr Biernat"
|
|
LABEL dev.egommerce.image.vendor="Egommerce"
|
|
LABEL dev.egommerce.image.service="api-logger"
|
|
LABEL dev.egommerce.image.version="1.0"
|
|
|
|
USER root
|
|
RUN ["fluent-gem", "install", "fluent-plugin-rabbitmq"]
|
|
# RUN ["gem", "install", "fluent-plugin-rabbitmq"]
|
|
|
|
USER fluent
|
|
COPY ./api-logger/etc /fluentd/etc
|
|
|
|
|
|
|
|
CMD ["fluentd"]
|
|
# ENTRYPOINT ["/traefik"] # FIXME stack->stack config.yml
|
|
|
|
EXPOSE 24224
|