docker-compose.yml 423 B

1234567891011121314151617181920212223242526
  1. version: "2.2"
  2. services:
  3. redis:
  4. image: redis:alpine
  5. ports:
  6. - 6379:6379
  7. postgres:
  8. image: postgres:10
  9. restart: always
  10. ports:
  11. - 5433:5432
  12. environment:
  13. - POSTGRES_PASSWORD=test
  14. forums:
  15. build:
  16. context: .
  17. ports:
  18. - 8000:8000
  19. links:
  20. - redis
  21. - postgres
  22. depends_on:
  23. - redis
  24. - postgres
  25. volumes:
  26. - ./config.py:/web/config.py