Advertisement
blohinn

Untitled

Mar 26th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. version: '2'
  2.  
  3. services:
  4.  
  5. postgres:
  6. image: postgres:latest
  7. volumes:
  8. - ./docker-volumes-dev/psql-data:/var/lib/postgresql/data
  9. env_file:
  10. - .envs
  11. ports:
  12. - '5432:5432'
  13.  
  14. redis:
  15. image: "redis:alpine"
  16. command: redis-server
  17. ports:
  18. - '6379:6379'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement