Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $ tree
  2. .
  3. ├── db
  4. │ ├── Dockerfile
  5. │ └── init
  6. │ └── 01-filladb.sh
  7. └── docker-compose.yml
  8.  
  9. 2 directories, 3 files
  10.  
  11.  
  12. $ cat docker-compose.yml
  13. version: '3.2'
  14. services:
  15. postgres:
  16. restart: 'always'
  17. ports:
  18. - '5432:5432'
  19. environment:
  20. - "FILLA_DB_USER=filla"
  21. - "FILLA_DB_PASSWORD=filla"
  22. - "FILLA_DB_DATABASE=filladb1"
  23. - "POSTGRES_PASSWORD=password"
  24. build: './db'
  25. networks:
  26. infranet:
  27. aliases:
  28. - 'postgres'
  29.  
  30. networks:
  31. infranet:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement