Added Poste

This commit is contained in:
2025-01-21 16:29:59 -08:00
parent 216719fdf4
commit 7c0a75aa75
9 changed files with 43 additions and 7 deletions
+1
View File
@@ -1,4 +1,5 @@
services:
adminer:
image: adminer:latest
container_name: adminer
+2 -3
View File
@@ -1,7 +1,6 @@
version: '3.4'
services:
mariadb:
adminer:
extends:
file: ${COOKBOOK}/adminer/docker-compose.yml
service: adminer
+1 -2
View File
@@ -1,6 +1,5 @@
version: '3.4'
services:
mariadb:
extends:
file: ${COOKBOOK}/mariadb/docker-compose.yml
+4
View File
@@ -0,0 +1,4 @@
# Poste.io
[Documentation](https://poste.io/doc/)
+19
View File
@@ -0,0 +1,19 @@
services:
poste:
image: analogic/poste.io
container_name: poste
restart: unless-stopped
ports:
- "25:25" # SMTP
- "110:110" # POP3
- "143:143" # IMAP
- "587:587" # Submission (SMTP client relay)
- "993:993" # IMAPS
- "995:995" # POP3S
- "8080:80" # Internal HTTP for reverse proxy
environment:
- HTTPS=ON
- PUBLIC_HOSTNAME=${POSTE_PUBLIC_HOSTNAME:-mail.yourdomain.com}
- TZ=${TZ:-America/Vancouver}
volumes:
- ./data:/data
+6
View File
@@ -0,0 +1,6 @@
services:
poste:
extends:
file: ${COOKBOOK}/poste/docker-compose.yml
service: poste
+8
View File
@@ -0,0 +1,8 @@
# Global
COOKBOOK=/git/docker-compose-cookbooks
VOL_PATH=./data
TZ=America/Vancouver
COMPOSE_PROJECT_NAME=poste
# Poste
POSTE_PUBLIC_HOSTNAME=yourDomain.com
+1 -2
View File
@@ -1,6 +1,5 @@
version: '3.4'
services:
stashapp:
extends:
file: ${COOKBOOK}/stashapp/docker-compose.yml
+1
View File
@@ -1,6 +1,7 @@
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
VOL_PATH=./data
TZ="America/Vancouver"
COMPOSE_PROJECT_NAME=stash
# stashapp
STASHAPP_IMAGE=stashapp/stash:latest