Skip to content

Instantly share code, notes, and snippets.

@brunokunace
Created March 21, 2018 17:34
Show Gist options
  • Select an option

  • Save brunokunace/8f18145c1303f6c2625dc2cecaadb568 to your computer and use it in GitHub Desktop.

Select an option

Save brunokunace/8f18145c1303f6c2625dc2cecaadb568 to your computer and use it in GitHub Desktop.
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