forked from ddrilling/AsbCloudServer
24 lines
525 B
YAML
24 lines
525 B
YAML
|
version: '3.9'
|
||
|
|
||
|
services:
|
||
|
|
||
|
postgres:
|
||
|
container_name: pg_db
|
||
|
image: timescale/timescaledb:latest-pg15
|
||
|
environment:
|
||
|
POSTGRES_USER: postgres
|
||
|
POSTGRES_PASSWORD: postgres
|
||
|
POSTGRES_DB: "AsbCloud"
|
||
|
volumes:
|
||
|
- ./timescaledb_data:/var/lib/postgresql/data
|
||
|
ports:
|
||
|
- "5434:5432"
|
||
|
|
||
|
pgadmin:
|
||
|
container_name: pgadmin
|
||
|
image: dpage/pgadmin4
|
||
|
environment:
|
||
|
PGADMIN_DEFAULT_EMAIL: noemail@noemail.com
|
||
|
PGADMIN_DEFAULT_PASSWORD: root
|
||
|
ports:
|
||
|
- "5050:80"
|