17 lines
449 B
Docker
17 lines
449 B
Docker
|
FROM hashicorp/consul:1.14
|
||
|
|
||
|
LABEL dev.egommerce.image.author="Piotr Biernat"
|
||
|
LABEL dev.egommerce.image.vendor="Egommerce"
|
||
|
LABEL dev.egommerce.image.service="api-registry"
|
||
|
LABEL dev.egommerce.image.version="1.0"
|
||
|
|
||
|
COPY ./api-registry/etc /consul/config
|
||
|
|
||
|
EXPOSE 8500 8600 8600/udp
|
||
|
# USER consul
|
||
|
|
||
|
ENTRYPOINT ["consul", "agent", "-config-dir=/consul/config"]
|
||
|
|
||
|
# CMD ["consul", "agent", "-config-dir=/consul/config"]
|
||
|
# ENTRYPOINT ["docker-entrypoint.sh"]
|