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