HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: //proc/1233/root/home/arjun/projects/buyercall/docker-compose.yml
<<<<<<< HEAD
version: "3"

services:
  postgres:
    image: postgres:9.4.3
=======
version: '2'

services:
  postgres:
    image: postgres:9.4
>>>>>>> 2d4ba41568adf348959bbf7b64ffa061df87d07b
    environment:
      POSTGRES_USER: buyercall
      POSTGRES_PASSWORD: bestpassword
    ports:
      - 127.0.0.1:5432:5432
    volumes:
      - ~/.docker-volumes/buyercall/postgresql/data:/var/lib/postgresql/data
<<<<<<< HEAD
=======

  redis:
    image: redis:3.0-alpine
    ports:
      - 127.0.0.1:6379:6379
    volumes:
      - ~/.docker-volumes/buyercall/redis/data:/var/lib/redis/data
>>>>>>> 2d4ba41568adf348959bbf7b64ffa061df87d07b

  redis:
    image: redis:2.8.21
    ports:
      - 127.0.0.1:6378:6379
    volumes:
      - ~/.docker-volumes/buyercall/redis/data:/var/lib/redis/data
  
  # faye:
  #   image: nickjj/faye:latest
  #   links:
  #     - redis
  #   ports:
  #     - 4242:4242
  #   environment:
  #     FAYE_PUSH_TOKEN: 123notsecure

  # cadvisor:
  #   image: google/cadvisor:latest
  #   volumes:
  #     - /:/rootfs:ro
  #     - /var/run:/var/run:rw
  #     - /sys:/sys:ro
  #     - /var/lib/docker/:/var/lib/docker:ro
  #   ports:
  #     - 8080:8080

  # If you want to run everything in a container locally then make sure you
  # remove the web, worker, beat and flower entries from the Procfile.
  #
  # If you plan to develop with everything in a container then make sure to
  # set up volumes for live code feedback as well as gunicorn reloads.
  #website:
  #  build: .
  #  links:
  #    - redis
  #    - postgres
  #    - faye
  #  ports:
  #    - 8000:8000

  #celery:
  #  build: .
  #  command: celery worker -B -A buyercall.blueprints.user.tasks -l info
  #  links:
  #    - redis
  #    - postgres

  #flower:
  #  build: .
  #  command: flower -A buyercall.blueprints.user.tasks --port=8081
  #  links:
  #    - redis
  #  ports:
  #    - 8081:8081