mirror of
https://github.com/friendica/docker
synced 2025-02-16 04:59:06 +01:00
- Added `.examples/docker-compose/insecure/mariadb-cron-smtp` - Added `.examples/docker-compose/with-traefik-proxy/mariadb-cron-smtp` - Updated README.md
12 lines
No EOL
333 B
Docker
12 lines
No EOL
333 B
Docker
# Based on .exmples/dockerfiles/smtp/fpm
|
|
FROM friendica/server:fpm
|
|
|
|
# simple = using an smtp without any credentials (mostly in local networks)
|
|
# custom = you need to set host, port, auth_options, authinfo (e.g. for GMX support)
|
|
ENV SMTP_TYPE simple
|
|
|
|
ENV SMTP_HOST smtp.example.org
|
|
|
|
COPY *.sh /
|
|
RUN chmod +x /*.sh
|
|
RUN /smtp-config.sh |