All Questions
4 questions
0
votes
0
answers
735
views
Can't install supervisor in docker container
I have a Dockerfile
FROM python:3.10.4
RUN apt-get update
RUN apt-get install -y supervisor
WORKDIR /app
COPY requirements.txt .
COPY ./docker/api/conf.d/supervisor.conf /etc/supervisor/conf.d/...
0
votes
0
answers
1k
views
How to manage Apache (httpd) with Supervisord properly in a Docker?
I am trying to build a Docker image with Apache (httpd) and PHP 5.3.3. The image is based on a CentOS 6 && Supervisord that I have made. So far everything is working "fine" (and this means no ...
2
votes
1
answer
541
views
docker with shiny server pro issues
I have created two dockers with shiny server on centos:
Docker with shiny server - free edition here
Docker with shiny server pro (using a temporary license) here
These dockers are on centos, as it ...
5
votes
1
answer
4k
views
Docker Centos 7 easy_install supervisor ssl issue behind proxy
For the last two days I am reading docker-container and trying to setup an Apache container.
I am behind proxy. Below is the content of my Dockerfile.
FROM centos:latest
ENV http_proxy <Perfect ...