mirror of
https://github.com/detleph/server.git
synced 2026-09-04 08:36:06 +02:00
29 lines
567 B
YAML
Executable File
29 lines
567 B
YAML
Executable File
version: "3"
|
|
services:
|
|
mail:
|
|
image: boky/postfix
|
|
restart: always
|
|
environment:
|
|
- ALLOWED_SENDER_DOMAINS=mail.${DOMAIN}
|
|
ports:
|
|
- "587:587"
|
|
container_name: "postfix"
|
|
volumes:
|
|
- ./host/keys/:/etc/opendkim/keys
|
|
postgres:
|
|
image: postgres
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_PASSWORD=${DATABASE_PASSWORD}
|
|
ports:
|
|
- 5432:5432
|
|
container_name: "postgres"
|
|
redis:
|
|
image: redis
|
|
restart: always
|
|
|
|
#server:
|
|
# build: .
|
|
# restart: always
|
|
# container_name: "server"
|