stack-testing.yml 273 B

123456789101112131415161718
  1. version: "3.1"
  2. services:
  3. rollbot:
  4. build: .
  5. ports:
  6. - "6071:6070"
  7. restart: always
  8. depends_on:
  9. - "db"
  10. command: [ "python3", "app.py" ]
  11. db:
  12. image: postgres
  13. restart: always
  14. environment:
  15. POSTGRES_PASSWORD: rollbotpostgres