mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
24 lines
431 B
YAML
24 lines
431 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
|
|
db:
|
|
image: mdillon/postgis
|
|
environment:
|
|
- POSTGRES_DB=gsevpt
|
|
- POSTGRES_USER=user
|
|
- POSTGRES_PASSWORD=pass
|
|
|
|
web:
|
|
build: .
|
|
environment:
|
|
FLASK_APP: main.py
|
|
DATABASE_URL: postgresql://user:pass@db/gsevpt
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
FLASK_APP: main.py
|
|
DATABASE_URL: postgresql://user:pass@db/gsevpt
|
|
depends_on:
|
|
- db
|