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: //home/arjun/projects/buyercall_forms/buyercall/docker-compose.yml
version: '2'

services:
  postgres:
    image: postgres:9.4
    environment:
      POSTGRES_USER: buyercall
      POSTGRES_PASSWORD: bestpassword
    ports:
      - 127.0.0.1:5432:5432
    volumes:
      - ~/.docker-volumes/buyercall/postgresql/data:/var/lib/postgresql/data

  redis:
    image: redis:3.0-alpine
    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