e225a57f97
- Removing channels. Going back to a wsgi deployment - Removed server projector code - Autoupdate throttling is now in the client - New communication stack in the client - Adopted all deployment methods: Docker stack and docker compose (prod and dev) - Added autoupdate service as submodule
5 lines
333 B
Docker
5 lines
333 B
Docker
FROM haproxy:2.0-alpine
|
|
COPY src/haproxy.common.cfg /usr/local/etc/haproxy/haproxy.common.cfg
|
|
COPY src/haproxy.prod.cfg /usr/local/etc/haproxy/haproxy.prod.cfg
|
|
COPY src/combined.pem /usr/local/etc/haproxy/combined.pem
|
|
CMD ["haproxy", "-f", "/usr/local/etc/haproxy/haproxy.common.cfg", "-f", "/usr/local/etc/haproxy/haproxy.prod.cfg"] |