This commit is contained in:
2023-08-30 16:24:17 -04:00
parent ac0ecdff5e
commit 0c930a24ea
8 changed files with 34 additions and 10 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3'
services:
db:
image: postgres:latest
container_name: aviation-weather_db
environment:
POSTGRES_USER: ${POSTRGRES_USER}
POSTGRESS_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}
volumes:
- ./data:/var/lib/postgresql/data
ports:
-'5432:5432'
restart: unless-stopped