Skip to content

Instantly share code, notes, and snippets.

@antonkomarev
antonkomarev / php.Dockerfile
Created July 19, 2024 08:24
How to install PHP in Docker when "add-apt-repository -y ppa:ondrej/php" is not available
apt-get -y install --no-install-recommends --no-install-suggests dirmngr && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 71DAEAAB4AD4CAB6 4F4EA0AAE5267A6C && \
add-apt-repository -y "deb https://mirror.yandex.ru/mirrors/launchpad/ondrej/php/ $(lsb_release -cs) main"
@bndw
bndw / docker_debian.md
Last active November 9, 2023 13:40
How to install an older version of Docker on Debian
@tentacode
tentacode / index.html.twig
Created October 27, 2014 13:51
Calling twig macro dynamically with twig "attribute" method
{% import 'macro.html.twig' as macro %}
{{ attribute(macro, 'type_1', 'Foobar') }} {# <p>Type One Foobar</p> #}
{{ attribute(macro, 'type_2', 'Barfoo') }} {# <p>Type Two Barfoo</p> #}