stack.yml 252 B

12345678910111213141516
  1. # Use postgres/example user/password credentials
  2. version: '3.1'
  3. services:
  4. db:
  5. image: postgres
  6. restart: always
  7. environment:
  8. POSTGRES_PASSWORD: example
  9. adminer:
  10. image: adminer
  11. restart: always
  12. ports:
  13. - 8080:8080