4484d1e4ef
- Added each service as a submodule for development - Added conventions for naming environment variables - Added required targets in makefiles of services
5 lines
254 B
Docker
5 lines
254 B
Docker
FROM haproxy:2.0.8-alpine
|
|
COPY src/haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg
|
|
COPY src/dev-haproxy.cfg /usr/local/etc/haproxy/dev-haproxy.cfg
|
|
CMD ["haproxy", "-f", "/usr/local/etc/haproxy/haproxy.cfg", "-f", "/usr/local/etc/haproxy/dev-haproxy.cfg"]
|