version: "2.2" services: app: image: xf/pluto:prod container_name: pluto build: context: . args: OPERATION: ${OPERATION} volumes: - ${REPO_DIR}:/code - ${REPO_DIR}/docker/uwsgi.ini:/conf/uwsgi.ini - ${APP_DATABASE_FILE}:/conf/db.sqlite3 - pluto_static:${STATIC_ROOT} #ports: # - "8000:8000" # uwsgi socket env_file: - stack.env volumes_from: - tmp depends_on: redis: condition: service_healthy migration: condition: service_started collectstatic: condition: service_started networks: - default - xf - elastic scheduling: image: xf/pluto:prod container_name: scheduling_pluto build: context: . args: OPERATION: ${OPERATION} command: sh -c '. /venv/bin/activate && python manage.py scheduling' volumes: - ${REPO_DIR}:/code - ${REPO_DIR}/docker/uwsgi.ini:/conf/uwsgi.ini - ${APP_DATABASE_FILE}:/conf/db.sqlite3 - pluto_static:${STATIC_ROOT} env_file: - stack.env volumes_from: - tmp depends_on: redis: condition: service_healthy migration: condition: service_started collectstatic: condition: service_started networks: - default - xf - elastic polling: image: xf/pluto:prod container_name: polling_pluto build: context: . args: OPERATION: ${OPERATION} command: sh -c '. /venv/bin/activate && python manage.py polling' volumes: - ${REPO_DIR}:/code - ${REPO_DIR}/docker/uwsgi.ini:/conf/uwsgi.ini - ${APP_DATABASE_FILE}:/conf/db.sqlite3 - pluto_static:${STATIC_ROOT} env_file: - stack.env volumes_from: - tmp depends_on: redis: condition: service_healthy migration: condition: service_started collectstatic: condition: service_started networks: - default - xf - elastic migration: image: xf/pluto:prod container_name: migration_pluto build: context: . args: OPERATION: ${OPERATION} command: sh -c '. /venv/bin/activate && python manage.py migrate --noinput' volumes: - ${REPO_DIR}:/code - ${APP_DATABASE_FILE}:/conf/db.sqlite3 - pluto_static:${STATIC_ROOT} volumes_from: - tmp env_file: - stack.env collectstatic: image: xf/pluto:prod container_name: collectstatic_pluto build: context: . args: OPERATION: ${OPERATION} command: sh -c '. /venv/bin/activate && python manage.py collectstatic --noinput' volumes: - ${REPO_DIR}:/code - ${APP_DATABASE_FILE}:/conf/db.sqlite3 - pluto_static:${STATIC_ROOT} volumes_from: - tmp env_file: - stack.env nginx: image: nginx:latest container_name: nginx_pluto ports: - ${APP_PORT}:9999 ulimits: nproc: 65535 nofile: soft: 65535 hard: 65535 volumes: - ${REPO_DIR}:/code - ${REPO_DIR}/docker/nginx/conf.d/${OPERATION}.conf:/etc/nginx/conf.d/default.conf - pluto_static:${STATIC_ROOT} volumes_from: - tmp networks: - default - xf depends_on: app: condition: service_started # volumes_from: # - tmp # depends_on: # redis: # condition: service_healthy tmp: image: busybox container_name: tmp_pluto command: chmod -R 777 /var/run/socks volumes: - /var/run/socks # For caching redis: image: redis container_name: redis_pluto command: redis-server /etc/redis.conf ulimits: nproc: 65535 nofile: soft: 65535 hard: 65535 volumes: - ${REPO_DIR}/docker/redis.conf:/etc/redis.conf - pluto_redis_data:/data volumes_from: - tmp healthcheck: test: "redis-cli -s /var/run/socks/redis.sock ping" interval: 2s timeout: 2s retries: 15 # pyroscope: # image: "pyroscope/pyroscope:latest" # ports: # - "4040:4040" # command: # - "server" networks: default: driver: bridge xf: external: true elastic: external: true volumes: pluto_static: {} pluto_redis_data: {}