mailout/docker-compose.yml
Thomas Maurice d08f82ba66
All checks were successful
build / build (push) Successful in 2m9s
feat(misc): allows user edition, templating of the home, and more
2024-02-14 18:50:35 +01:00

15 lines
313 B
YAML

version: "3"
services:
postgres:
image: postgres:15
restart: unless-stopped
ports:
- 5432:5432/tcp
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres123
- POSTGRES_DB=vmail
volumes:
- postgres:/var/lib/postgresql/15/main
volumes:
postgres: {}