Migrated project into separate directories

This commit is contained in:
2023-09-07 21:05:32 -04:00
parent 359c6f0ac5
commit 17d7407f1b
52 changed files with 88 additions and 8987 deletions

View File

@@ -1,17 +0,0 @@
version: '3'
services:
db:
image: postgres:latest
container_name: aviation_weather_db
env_file:
- .env
environment:
POSTGRES_USER: ${POSTGRES_USER:-postgress}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB:-aviation_weather}
volumes:
- ./data:/var/lib/postgresql/data
ports:
- "5432:5432"
restart: unless-stopped