alpine

Installation of Firefox from Alpine Edge [closed]

允我心安 提交于 2021-01-02 06:09:15
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 days ago . Improve this question I appear to be missing something when attempting to install Firefox from the Alpine Edge Repository Firefox (Version 61.0.1-r0) Repo as distinct from installing Firefox-ESR (Version 52.8.1-r0) Repo I perform the necessary repository modification as documented here

Installation of Firefox from Alpine Edge [closed]

烂漫一生 提交于 2021-01-02 06:08:06
问题 Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 days ago . Improve this question I appear to be missing something when attempting to install Firefox from the Alpine Edge Repository Firefox (Version 61.0.1-r0) Repo as distinct from installing Firefox-ESR (Version 52.8.1-r0) Repo I perform the necessary repository modification as documented here

Add plpython3 Extension to Postgres/timescaledb Alpine Docker Image

十年热恋 提交于 2020-12-29 09:57:47
问题 I try to add the plpython3 extension to my timescaledb / postgres (based on linux alpine) image: FROM timescale/timescaledb:0.9.0-pg10 RUN set -ex \ && apk add --no-cache --virtual .plpython3-deps --repository http://nl.alpinelinux.org/alpine/edge/testing \ postgresql-plpython3 When I try to create the extension I get the following error: postgres=# CREATE EXTENSION plpython3u; ERROR: could not open extension control file "/usr/local/share/postgresql/extension/plpython3u.control": No such

How can I install Docker inside an alpine container?

会有一股神秘感。 提交于 2020-12-23 03:45:17
问题 How can I install Docker inside an alpine container and run docker images? I could install, but could not start docker and while running get "docker command not found error". 回答1: Dockerfile for running docker inside alpine FROM alpine:3.10 RUN apk add --update docker openrc RUN rc-update add docker boot Build docker image docker build -t docker-alpine . Run container docker run -it -v "/var/run/docker.sock:/var/run/docker.sock:rw" docker-alpine:latest /bin/sh 回答2: All you need is to install

How can I install Docker inside an alpine container?

女生的网名这么多〃 提交于 2020-12-23 03:42:14
问题 How can I install Docker inside an alpine container and run docker images? I could install, but could not start docker and while running get "docker command not found error". 回答1: Dockerfile for running docker inside alpine FROM alpine:3.10 RUN apk add --update docker openrc RUN rc-update add docker boot Build docker image docker build -t docker-alpine . Run container docker run -it -v "/var/run/docker.sock:/var/run/docker.sock:rw" docker-alpine:latest /bin/sh 回答2: All you need is to install

Docker NodeJS Puppeteer@2.0.0 - How do fix Failed to launch chrome! issue

你。 提交于 2020-12-13 03:03:24
问题 Without setting PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true and CHROMIUM_PATH /usr/bin/chromium-browser Without chromium package Error for printPdf() Error: Failed to launch chrome! spawn /usr/src/app/node_modules/puppeteer/.local-chromium/linux-706915/chrome-linux/chrome ENOENT With setting PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true and CHROMIUM_PATH /usr/bin/chromium-browser With chromium package Error is missing photos sometimes Below is my Dockerfile: FROM alpine:latest WORKDIR /usr/src/app RUN

How to install Nodejs v13.0.1 in alpine:3.8?

99封情书 提交于 2020-12-05 11:34:34
问题 I am writing a Dockerfile to dockerize a php + nodejs app. so I start from php:7.2.13-fpm-alpine image which is based on alpine:3.8. As study I found that I can add latest alpine repositoriy by command apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/v3.10/main/ nodejs However, with this command, I only got nodejs v10.16.3 while I want a latest one(v13.0.1) Is it possible to achieve it? 回答1: Alpine nodejs has two repositories for one LTS and one for the current version.

How to install Nodejs v13.0.1 in alpine:3.8?

我的未来我决定 提交于 2020-12-05 11:33:50
问题 I am writing a Dockerfile to dockerize a php + nodejs app. so I start from php:7.2.13-fpm-alpine image which is based on alpine:3.8. As study I found that I can add latest alpine repositoriy by command apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/v3.10/main/ nodejs However, with this command, I only got nodejs v10.16.3 while I want a latest one(v13.0.1) Is it possible to achieve it? 回答1: Alpine nodejs has two repositories for one LTS and one for the current version.

Can't connect to dockerized tor proxy

此生再无相见时 提交于 2020-12-05 11:28:34
问题 On Lubuntu I was able to use tor just by installing it and then connecting to its socks proxy, but on docker with alpine it doesn't seem to be that easy. Since I left my /etc/tor/torrc the way it came, it only consisted of lines that were commented out. So for alpine I just used the torrc.sample file which also only had lines that were commented out. Here is my Dockerfile : FROM alpine:latest RUN apk update && apk upgrade && apk add tor curl && rm /var/cache/apk/* && cp /etc/tor/torrc.sample

Can't connect to dockerized tor proxy

核能气质少年 提交于 2020-12-05 11:25:08
问题 On Lubuntu I was able to use tor just by installing it and then connecting to its socks proxy, but on docker with alpine it doesn't seem to be that easy. Since I left my /etc/tor/torrc the way it came, it only consisted of lines that were commented out. So for alpine I just used the torrc.sample file which also only had lines that were commented out. Here is my Dockerfile : FROM alpine:latest RUN apk update && apk upgrade && apk add tor curl && rm /var/cache/apk/* && cp /etc/tor/torrc.sample