Guest User

Untitled

a guest
Mar 30th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. version: '3.1'
  2. services:
  3. apache-achei:
  4. image: ambientum/php:7.1-apache
  5. container_name: apache-achei
  6. volumes:
  7. - ./:/var/www/app
  8. ports:
  9. - 8100:8080
  10. links:
  11. - postgres-achei
  12. postgres-achei:
  13. image: ambientum/postgres
  14. container_name: postgres-achei
  15. ports:
  16. - "5433:5432"
  17. environment:
  18. - POSTGRES_PASSWORD=achei
  19. - POSTGRES_DB=achei
  20. - POSTGRES_USER=achei
Add Comment
Please, Sign In to add comment