Minimalny działający docker-compose.yml (sprawdzony)
Spróbuj najpierw z minimalnym zestawem, np. bez clamav, tylko podstawowe funkcje:
This commit is contained in:
parent
35d463d31c
commit
14e688f640
|
|
@ -1,5 +1,4 @@
|
||||||
services:
|
services:
|
||||||
|
|
||||||
redis:
|
redis:
|
||||||
image: redis:alpine
|
image: redis:alpine
|
||||||
restart: always
|
restart: always
|
||||||
|
|
@ -20,10 +19,6 @@ services:
|
||||||
- "993:993"
|
- "993:993"
|
||||||
volumes:
|
volumes:
|
||||||
- "./maildata:/data"
|
- "./maildata:/data"
|
||||||
depends_on:
|
|
||||||
- resolver
|
|
||||||
- imap
|
|
||||||
- smtp
|
|
||||||
|
|
||||||
imap:
|
imap:
|
||||||
image: ghcr.io/mailu/dovecot:1.10
|
image: ghcr.io/mailu/dovecot:1.10
|
||||||
|
|
@ -46,13 +41,6 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- "./maildata:/data"
|
- "./maildata:/data"
|
||||||
|
|
||||||
antivirus:
|
|
||||||
image: ghcr.io/mailu/clamav:1.10
|
|
||||||
restart: always
|
|
||||||
env_file: mailu.env
|
|
||||||
volumes:
|
|
||||||
- "./maildata:/data"
|
|
||||||
|
|
||||||
webmail:
|
webmail:
|
||||||
image: ghcr.io/mailu/roundcube:1.10
|
image: ghcr.io/mailu/roundcube:1.10
|
||||||
restart: always
|
restart: always
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue