mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
16 lines
247 B
YAML
16 lines
247 B
YAML
|
|
version: "3"
|
|
|
|
services:
|
|
|
|
postgres:
|
|
image: postgres:11
|
|
ports:
|
|
- 5432:5432
|
|
environment:
|
|
POSTGRES_USER: alice
|
|
POSTGRES_PASSWORD: alice
|
|
POSTGRES_DB: alice
|
|
volumes:
|
|
- ./_data:/var/lib/postgresql/data
|