mirror of https://github.com/penpot/penpot.git
✨ Add explicit network asingation and alias on devenv compose
This commit is contained in:
parent
f58475a7c9
commit
a7552d412a
|
|
@ -115,6 +115,11 @@ services:
|
|||
volumes:
|
||||
- "valkey_data:/data"
|
||||
|
||||
networks:
|
||||
default:
|
||||
aliases:
|
||||
- redis
|
||||
|
||||
mailer:
|
||||
image: sj26/mailcatcher:latest
|
||||
restart: always
|
||||
|
|
@ -123,6 +128,12 @@ services:
|
|||
ports:
|
||||
- "1080:1080"
|
||||
|
||||
networks:
|
||||
default:
|
||||
aliases:
|
||||
- mailer
|
||||
|
||||
|
||||
# https://github.com/rroemhild/docker-test-openldap
|
||||
ldap:
|
||||
image: rroemhild/test-openldap:2.1
|
||||
|
|
@ -136,3 +147,9 @@ services:
|
|||
nofile:
|
||||
soft: 1024
|
||||
hard: 1024
|
||||
|
||||
networks:
|
||||
default:
|
||||
aliases:
|
||||
- ldap
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue