forked from 2pm.tech/traqtor
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.
13 lines
448 B
YAML
13 lines
448 B
YAML
version: "3"
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:13-alpine
|
|
volumes:
|
|
- ../postgres/:/var/lib/postgresql/data
|
|
environment:
|
|
- POSTGRES_INITDB_ARGS=--encoding=UTF8 --locale=en_US.UTF-8 --lc-collate=en_US.UTF-8 --lc-ctype=en_US.UTF-8 --lc-messages=en_US.UTF-8 --lc-monetary=en_US.UTF-8 --lc-numeric=en_US.UTF-8 --lc-time=en_US.UTF-8
|
|
- POSTGRES_USER=traqtor
|
|
- POSTGRES_PASSWORD=traqtor
|
|
ports:
|
|
- 10240:5432 |