blob: abac64e4f4dcebf77a38b182407f1b56ac90f85d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
version: '3.1'
services:
db:
image: postgres
container_name: webol_dev_postgres
restart: no
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=webol
ports:
- "5432:5432"
|