Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion docker-compose2.0/docker-compose.firewall.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ services:
- edge1
ports:
- "8000:8000"
- "8443:443"
networks:
- default

Expand All @@ -30,6 +31,8 @@ services:
- ./.volumes/certs2.0/edge1:/etc/defguard/certs
ports:
- "8080:8080"
- "80:80"
- "443:443"
networks:
- default

Expand Down Expand Up @@ -82,4 +85,4 @@ networks:
driver: bridge
ipam:
config:
- subnet: 10.10.20.0/24
- subnet: 10.10.20.0/24
1 change: 1 addition & 0 deletions docker-compose2.0/docker-compose.ha.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ services:
- edge-lb
ports:
- "8000:8000"
- "8443:443"

edge1:
image: ghcr.io/defguard/defguard-proxy:2.0.0-alpha2
Expand Down
9 changes: 6 additions & 3 deletions docker-compose2.0/docker-compose.ldap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@ services:
- edge1
ports:
- "8000:8000"
- "8443:443"

edge1:
image: ghcr.io/defguard/defguard-proxy:2.0.0-alpha2
volumes:
- ./.volumes/certs2.0/edge1:/etc/defguard/certs
ports:
- "8080:8080"
- "80:80"
- "443:443"

gateway1:
image: ghcr.io/defguard/gateway:2.0.0-alpha2
Expand All @@ -53,8 +56,8 @@ services:
image: axllent/mailpit:latest
container_name: mailpit
ports:
- "8025:8025" # web UI
- "1025:1025" # SMTP
- "8025:8025" # web UI
- "1025:1025" # SMTP

openldap:
image: bitnamilegacy/openldap:2.6
Expand All @@ -79,4 +82,4 @@ services:
PHPLDAPADMIN_LDAP_HOSTS: "#PYTHON2BASH:[{'openldap': [{'server': [{'host': 'openldap', 'port': 1389}]}]}]"
PHPLDAPADMIN_HTTPS: "false"
ports:
- "8081:80"
- "8081:80"
3 changes: 3 additions & 0 deletions docker-compose2.0/docker-compose.setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ services:
- gateway
ports:
- "8000:8000"
- "8443:443"

edge:
restart: unless-stopped
Expand All @@ -23,6 +24,8 @@ services:
- ./.volumes/certs/edge:/etc/defguard/certs
ports:
- "8080:8080"
- "443:443"
- "80:80"

gateway:
restart: unless-stopped
Expand Down
3 changes: 3 additions & 0 deletions docker-compose2.0/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@ services:
- edge1
ports:
- "8000:8000"
- "8443:443"

edge1:
image: ghcr.io/defguard/defguard-proxy:2.0.0-alpha2
volumes:
- ./.volumes/certs2.0/edge1:/etc/defguard/certs
ports:
- "8080:8080"
- "80:80"
- "443:443"

gateway1:
image: ghcr.io/defguard/gateway:2.0.0-alpha2
Expand Down
3 changes: 3 additions & 0 deletions ova/files/docker-compose.standalone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ services:
- db
ports:
- "8000:8000"
- "8443:443"

edge:
restart: unless-stopped
Expand All @@ -21,6 +22,8 @@ services:
ports:
- "8080:8080"
- "50051:50051"
- "443:443"
- "80:80"

gateway:
restart: unless-stopped
Expand Down
3 changes: 3 additions & 0 deletions ova/files/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ services:
- gateway
ports:
- "8000:8000"
- "8443:443"

edge:
restart: unless-stopped
Expand All @@ -24,6 +25,8 @@ services:
- ./.volumes/certs/edge:/etc/defguard/certs
ports:
- "8080:8080"
- "443:443"
- "80:80"

gateway:
restart: unless-stopped
Expand Down
Loading