Allow external network access
All checks were successful
continuous-integration/drone/push Build is passing

Useful for connecting to services on private networks for example.
This commit is contained in:
Râu Cao 2023-03-28 11:38:56 +02:00
parent c17c980b69
commit 42b9b27561
Signed by: raucao
GPG Key ID: 15E65F399D084BA9

View File

@ -3,6 +3,9 @@ services:
image: 4teamwork/389ds:latest
volumes:
- ./tmp/389ds:/data
networks:
- external_network
- internal_network
ports:
- "389:3389"
environment:
@ -22,6 +25,9 @@ services:
command: bash -c "rm -f /akkounts/tmp/pids/server.pid; bin/dev"
volumes:
- .:/akkounts
networks:
- external_network
- internal_network
ports:
- "3000:3000"
environment:
@ -32,3 +38,8 @@ services:
LDAP_USE_TLS: "false"
depends_on:
- ldap
networks:
external_network:
internal_network:
internal: true