diff --git a/docker-compose.yml b/docker-compose.yml index f40bd25..7277f25 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -57,12 +57,25 @@ services: - "./data/rtmp/hls:/tmp/hls" depends_on: - "auth" + - "frontend" restart: always networks: - internal labels: - meta.role=rtmp + frontend: # container for python frontend + build: frontend/. + command: uwsgi uwsgi.ini + volumes: + - "./config/frontend/config.yml:/code/config.yml:ro" + - "./config/frontend/uwsgi.ini:/code/uwsgi.ini:ro" + restart: always + networks: + - internal + labels: + - meta.role=frontend + networks: internal: {}