15 lines
273 B
YAML
15 lines
273 B
YAML
version: '3.1'
|
|
|
|
services:
|
|
|
|
concordia-postgres:
|
|
image: postgres
|
|
container_name: concordia-postgres
|
|
restart: always
|
|
ports:
|
|
- "10001:5432"
|
|
environment:
|
|
POSTGRES_USER: webuser
|
|
POSTGRES_PASSWORD: webpassword
|
|
POSTGRES_DB: backend_db
|