Use defaults in variables, to allow for local builds
This commit is contained in:
@@ -3,54 +3,54 @@ version: '3'
|
|||||||
services:
|
services:
|
||||||
|
|
||||||
front:
|
front:
|
||||||
image: $DOCKER_ORG/nginx:$VERSION
|
image: ${DOCKER_ORG:-mailu}/nginx:${VERSION:-local}
|
||||||
build: ../core/nginx
|
build: ../core/nginx
|
||||||
|
|
||||||
imap:
|
imap:
|
||||||
image: $DOCKER_ORG/dovecot:$VERSION
|
image: ${DOCKER_ORG:-mailu}/dovecot:${VERSION:-local}
|
||||||
build: ../core/dovecot
|
build: ../core/dovecot
|
||||||
|
|
||||||
smtp:
|
smtp:
|
||||||
image: $DOCKER_ORG/postfix:$VERSION
|
image: ${DOCKER_ORG:-mailu}/postfix:${VERSION:-local}
|
||||||
build: ../core/postfix
|
build: ../core/postfix
|
||||||
|
|
||||||
antispam:
|
antispam:
|
||||||
image: $DOCKER_ORG/rspamd:$VERSION
|
image: ${DOCKER_ORG:-mailu}/rspamd:${VERSION:-local}
|
||||||
build: ../services/rspamd
|
build: ../services/rspamd
|
||||||
|
|
||||||
antivirus:
|
antivirus:
|
||||||
image: $DOCKER_ORG/clamav:$VERSION
|
image: ${DOCKER_ORG:-mailu}/clamav:${VERSION:-local}
|
||||||
build: ../optional/clamav
|
build: ../optional/clamav
|
||||||
|
|
||||||
webdav:
|
webdav:
|
||||||
image: $DOCKER_ORG/radicale:$VERSION
|
image: ${DOCKER_ORG:-mailu}/radicale:${VERSION:-local}
|
||||||
build: ../optional/radicale
|
build: ../optional/radicale
|
||||||
|
|
||||||
admin:
|
admin:
|
||||||
image: $DOCKER_ORG/admin:$VERSION
|
image: ${DOCKER_ORG:-mailu}/admin:${VERSION:-local}
|
||||||
build: ../core/admin
|
build: ../core/admin
|
||||||
|
|
||||||
roundcube:
|
roundcube:
|
||||||
image: $DOCKER_ORG/roundcube:$VERSION
|
image: ${DOCKER_ORG:-mailu}/roundcube:${VERSION:-local}
|
||||||
build: ../webmails/roundcube
|
build: ../webmails/roundcube
|
||||||
|
|
||||||
rainloop:
|
rainloop:
|
||||||
image: $DOCKER_ORG/rainloop:$VERSION
|
image: ${DOCKER_ORG:-mailu}/rainloop:${VERSION:-local}
|
||||||
build: ../webmails/rainloop
|
build: ../webmails/rainloop
|
||||||
|
|
||||||
fetchmail:
|
fetchmail:
|
||||||
image: $DOCKER_ORG/fetchmail:$VERSION
|
image: ${DOCKER_ORG:-mailu}/fetchmail:${VERSION:-local}
|
||||||
build: ../services/fetchmail
|
build: ../services/fetchmail
|
||||||
|
|
||||||
none:
|
none:
|
||||||
image: $DOCKER_ORG/none:$VERSION
|
image: ${DOCKER_ORG:-mailu}/none:${VERSION:-local}
|
||||||
build: ../core/none
|
build: ../core/none
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
image: $DOCKER_ORG/docs:$VERSION
|
image: ${DOCKER_ORG:-mailu}/docs:${VERSION:-local}
|
||||||
build: ../docs
|
build: ../docs
|
||||||
|
|
||||||
setup:
|
setup:
|
||||||
image: $DOCKER_ORG/setup:$VERSION
|
image: ${DOCKER_ORG:-mailu}/setup:${VERSION:-local}
|
||||||
build: ../setup
|
build: ../setup
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user