Cleanup
This commit is contained in:
15
docker-compose.yml
Normal file
15
docker-compose.yml
Normal 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
|
||||
Reference in New Issue
Block a user