You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
405 B

  1. version: 1.0
  2. publish: app
  3. services:
  4. app:
  5. image: requarks/wiki:2
  6. environment:
  7. DB_TYPE: postgres
  8. DB_PORT: 5432
  9. DB_HOST: db
  10. DB_USER: wiki
  11. DB_PASS: Password123!
  12. DB_NAME: wiki
  13. ports:
  14. - container: 3000
  15. public: 80
  16. db:
  17. image: postgres:11
  18. environment:
  19. POSTGRES_DB: wiki
  20. POSTGRES_USER: wiki
  21. POSTGRES_PASSWORD: Password123!