HAProxy Ports 80 and 443 Permission Denied #852
Unanswered
bryanheinz
asked this question in
Q&A
Replies: 2 comments 5 replies
-
@bryanheinz can you share your |
Beta Was this translation helpful? Give feedback.
0 replies
-
Of course, albeit I'm using Compose. version: "3"
networks:
frontend:
external: true
volumes:
haproxy_certs:
external: true
services:
haproxy:
image: haproxy:2.8-alpine
ports:
- 80:80
- 443:443
volumes:
- ./haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg:ro
- haproxy_certs:/haproxy
container_name: haproxy
networks:
frontend:
aliases:
- haproxy |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm attempting to run a HAProxy container, binding to ports 80 and 443. However, I'm getting a Permission Denied error when it tries to bind to the ports:
My host is macOS 13. New Colima install, fairly vanilla config. I haven't touched the network config. Colima appears to have pulled Ubuntu 23.10 by default.
colima status
:Recreation:
I've been searching all over and I can't seem to come up with a solution. I don't think that this is an uncommon use case and the fact that i can't find anyone else with this problem means that I'm probably missing something simple. Maybe it's just the layers of abstraction that are messing me up. Any help is greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions