Files
wedding/docker-compose.yml
John Lees-Miller 9de44dd735 Update compose files
2020-05-30 10:37:38 +01:00

17 lines
216 B
YAML

version: '3.8'
services:
db:
image: postgres:10
environment:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- '5432:5432'
web:
build: .
ports:
- '3000:3000'
links:
- db