Skip to content

Instantly share code, notes, and snippets.

@Cperbony
Created June 24, 2018 02:33
Show Gist options
  • Save Cperbony/5bb63a3b115eb265d3f47bf20496dd82 to your computer and use it in GitHub Desktop.
Save Cperbony/5bb63a3b115eb265d3f47bf20496dd82 to your computer and use it in GitHub Desktop.
version: '3'
services:
web:
image: nginx
ports:
- 80:80
db:
image: postgres
restart: always
environment:
POSTGRES_PASSWORD: mypassword
volumes:
- ./postgres:/var/lib/postgresql/data
ports:
- 5432
app:
build: .
volumes:
- ./rails_app:/rails_app
depends_on:
- db
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment