forked from neri/datatrash
15 lines
266 B
YAML
15 lines
266 B
YAML
version: "3.3"
|
|
services:
|
|
datatrash:
|
|
build: .
|
|
environment:
|
|
DATABASE_URL: 'postgresql://admin:secure@postgres'
|
|
ports:
|
|
- '8000:8000'
|
|
postgres:
|
|
image: postgres
|
|
environment:
|
|
POSTGRES_USER: admin
|
|
POSTGRES_PASSWORD: secure
|
|
|
|
|