25 lines
553 B
YAML
25 lines
553 B
YAML
services:
|
|
nextcloud:
|
|
image: ghcr.io/juliusknorr/nextcloud-dev-php83:latest
|
|
container_name: nc33-mailguard
|
|
ports:
|
|
- "8094:80"
|
|
environment:
|
|
SERVER_BRANCH: v33.0.2
|
|
volumes:
|
|
- nc33mail_srv:/var/www/html
|
|
- ${APP_SOURCE_DIR:-./opsdash}:/var/www/html/apps-extra/opsdash
|
|
depends_on:
|
|
- mailpit
|
|
restart: unless-stopped
|
|
|
|
mailpit:
|
|
image: axllent/mailpit:latest
|
|
container_name: mailpit-nc33
|
|
ports:
|
|
- "8026:8025"
|
|
- "1026:1025"
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
nc33mail_srv:
|