Files
wedding/docker-compose.yml
Rene 1f26e1819e
Some checks failed
CI / build (push) Has been cancelled
test
2025-09-18 16:49:35 +02:00

20 lines
313 B
YAML

version: '3.7'
services:
db:
image: postgres:10
environment:
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- '5432:5432'
web:
environment:
RAILS_ENV: production
CANONICAL_URL: beere5:3033, wedding.linepe.de
build: .
ports:
- '3033:3000'
links:
- db