You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
410 B
YAML
22 lines
410 B
YAML
version: '3'
|
|
|
|
# set database password in .env
|
|
# please don't use quote (') or (") symbols in variables
|
|
|
|
services:
|
|
db:
|
|
image: cthulhoo/postgres-count-bits:12-latest
|
|
build:
|
|
context:
|
|
./db
|
|
restart: unless-stopped
|
|
volumes:
|
|
- db:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
|
|
volumes:
|
|
db:
|
|
|