Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

59 строки
2.7 KiB

  1. # syntax=docker/dockerfile:1
  2. # This dockerfile builds on top of 'docker/Dockerfile-workers' in matrix-org/synapse
  3. # by including a built-in postgres instance, as well as setting up the homeserver so
  4. # that it is ready for testing via Complement.
  5. #
  6. # Instructions for building this image from those it depends on is detailed in this guide:
  7. # https://github.com/matrix-org/synapse/blob/develop/docker/README-testing.md#testing-with-postgresql-and-single-or-multi-process-synapse
  8. ARG SYNAPSE_VERSION=latest
  9. # This is an intermediate image, to be built locally (not pulled from a registry).
  10. ARG FROM=matrixdotorg/synapse-workers:$SYNAPSE_VERSION
  11. FROM $FROM
  12. # First of all, we copy postgres server from the official postgres image,
  13. # since for repeated rebuilds, this is much faster than apt installing
  14. # postgres each time.
  15. # This trick only works because (a) the Synapse image happens to have all the
  16. # shared libraries that postgres wants, (b) we use a postgres image based on
  17. # the same debian version as Synapse's docker image (so the versions of the
  18. # shared libraries match).
  19. RUN adduser --system --uid 999 postgres --home /var/lib/postgresql
  20. COPY --from=docker.io/library/postgres:13-bookworm /usr/lib/postgresql /usr/lib/postgresql
  21. COPY --from=docker.io/library/postgres:13-bookworm /usr/share/postgresql /usr/share/postgresql
  22. RUN mkdir /var/run/postgresql && chown postgres /var/run/postgresql
  23. ENV PATH="${PATH}:/usr/lib/postgresql/13/bin"
  24. ENV PGDATA=/var/lib/postgresql/data
  25. # We also initialize the database at build time, rather than runtime, so that it's faster to spin up the image.
  26. RUN gosu postgres initdb --locale=C --encoding=UTF-8 --auth-host password
  27. # Configure a password and create a database for Synapse
  28. RUN echo "ALTER USER postgres PASSWORD 'somesecret'" | gosu postgres postgres --single
  29. RUN echo "CREATE DATABASE synapse" | gosu postgres postgres --single
  30. # Extend the shared homeserver config to disable rate-limiting,
  31. # set Complement's static shared secret, enable registration, amongst other
  32. # tweaks to get Synapse ready for testing.
  33. # To do this, we copy the old template out of the way and then include it
  34. # with Jinja2.
  35. RUN mv /conf/shared.yaml.j2 /conf/shared-orig.yaml.j2
  36. COPY conf/workers-shared-extra.yaml.j2 /conf/shared.yaml.j2
  37. WORKDIR /data
  38. COPY conf/postgres.supervisord.conf /etc/supervisor/conf.d/postgres.conf
  39. # Copy the entrypoint
  40. COPY conf/start_for_complement.sh /
  41. # Expose nginx's listener ports
  42. EXPOSE 8008 8448
  43. ENTRYPOINT ["/start_for_complement.sh"]
  44. # Update the healthcheck to have a shorter check interval
  45. HEALTHCHECK --start-period=5s --interval=1s --timeout=1s \
  46. CMD /bin/sh /healthcheck.sh