Created
March 21, 2018 17:34
-
-
Save brunokunace/8f18145c1303f6c2625dc2cecaadb568 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3.1' | |
| services: | |
| apache-achei: | |
| image: ambientum/php:7.1-apache | |
| container_name: apache-achei | |
| volumes: | |
| - ./:/var/www/app | |
| ports: | |
| - 8100:8080 | |
| links: | |
| - postgres-achei | |
| postgres-achei: | |
| image: ambientum/postgres | |
| container_name: postgres-achei | |
| ports: | |
| - "5433:5432" | |
| environment: | |
| - POSTGRES_PASSWORD=achei | |
| - POSTGRES_DB=achei | |
| - POSTGRES_USER=achei |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment