mirror of
https://github.com/friendica/docker
synced 2025-02-08 13:02:21 +01:00
- remove supervisord possibility due incompatibility with `tini` - Fix example Dockerfiles
12 lines
333 B
Docker
12 lines
333 B
Docker
# Based on .exmples/dockerfiles/smtp/apache
|
|
FROM friendica:apache
|
|
|
|
# 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
|