21 lines
356 B
YAML
21 lines
356 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
db:
|
|
image: postgres:10
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
ports:
|
|
- '5432:5432'
|
|
|
|
web:
|
|
environment:
|
|
SECRET_KEY_BASE: "b0d9de4a4e2d8568b"
|
|
RAILS_ENV: production
|
|
CANONICAL_URL: beere5:3033, wedding.linepe.de
|
|
build: .
|
|
ports:
|
|
- '3033:3000'
|
|
links:
|
|
- db
|