diff --git a/dev/docker-compose.yml b/dev/docker-compose.yml index 1cd9fac..f12e3de 100644 --- a/dev/docker-compose.yml +++ b/dev/docker-compose.yml @@ -23,7 +23,7 @@ services: source: ../lcl/attachments target: /attachments read_only: false - - ..:/code + - ..:/code:z worker: build: context: ./docker @@ -41,7 +41,7 @@ services: source: ../lcl/attachments target: /attachments read_only: true - - ..:/code + - ..:/code:z environment: - PYTHONPATH=. - PAGURE_CONFIG=/code/openshift.cfg @@ -55,7 +55,7 @@ services: ports: - "8080:8080" volumes: - - ..:/code + - ..:/code:z environment: - PYTHONPATH=. - PAGURE_CONFIG=/code/openshift.cfg @@ -69,4 +69,4 @@ services: - POSTGRES_DB=pagure - PGDATA=/var/lib/postgresql/data/pgdata volumes: - - postgres:/var/lib/postgresql/data/pgdata + - postgres:/var/lib/postgresql/data/pgdata:z diff --git a/dev/docker/ev b/dev/docker/ev index 3e1bcea..ca07dcf 100644 --- a/dev/docker/ev +++ b/dev/docker/ev @@ -12,7 +12,7 @@ RUN dnf install -y python2-devel python-setuptools python-nose py-bcrypt python- python-openid-teams python-straight-plugin python-wtforms python-munch \ python-enum34 python-redis python-sqlalchemy systemd gitolite3 python-filelock \ python-fedora-flask python2-pillow python2-psycopg2 python-trollius \ - python-trollius-redis + python-trollius-redis python-celery WORKDIR /code ENTRYPOINT ["/usr/bin/python", "/code/pagure-ev/pagure_stream_server.py"]