mirror of
https://github.com/tgdrive/teldrive.git
synced 2024-11-10 09:02:52 +08:00
16 lines
No EOL
390 B
YAML
16 lines
No EOL
390 B
YAML
services:
|
|
postgres_db:
|
|
image: ghcr.io/divyam234/postgres
|
|
container_name: postgres_db
|
|
restart: always
|
|
networks:
|
|
- postgres
|
|
environment:
|
|
- POSTGRES_USER=teldrive
|
|
- POSTGRES_PASSWORD=secret
|
|
- POSTGRES_DB=postgres
|
|
volumes:
|
|
- ./postgres_data:/var/lib/postgresql/data
|
|
networks:
|
|
postgres:
|
|
external: true |