Skygist

Explore

  • All gists
  • Topics
  • Users
Give feedback on the new UI Powered by Opengist ⋅ 36ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login
a

alpine

Recently created Least recently created Recently updated Least recently updated
KarelWintersky

KarelWintersky / PHAR on Alpine linux

Last active 2 months ago alpine devops php

как на альпине включить запуск phar на php ?

0 0 1
1 На Alpine Linux для включения поддержки PHAR в PHP нужно выполнить несколько шагов:
2
3 ## 1. Установка PHP с поддержкой PHAR
4
5 ```bash
6 # Обновление пакетов
7 apk update
8
9 # Установка PHP с необходимыми расширениями
10 apk add php php-phar php-common
KarelWintersky

KarelWintersky / SQLite3 on Alpine Linux

Last active 2 months ago alpine devops sqlite

как на альпине линус включить в php sqlite3

0 0 1
# Обновление репозиториев
apk update

# Установка PHP с SQLite3
apk add php php-sqlite3 sqlite sqlite-dev php-json php-mbstring

Перезагрузка веб-сервера (если используется)