/
githubmirror
/
tpcc-postgres
Обзор
Документация
Войти
/
githubmirror
/
tpcc-postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docker/postgres-latest/docker-compose.yml
30 строк
649 B
Tim Veil
Update docker files with correct database name (`benchbase` instead of `oltpbench`) (#38)
28 сен 2021, 20:44
Не верифицирован
28 сен 2021, 20:44
cf20344
Код
Авторство
О чём код?
version: '3.5' services: postgres: container_name: postgres hostname: postgres image: postgres:alpine command: postgres -N 500 environment: POSTGRES_USER: admin POSTGRES_PASSWORD: password POSTGRES_DB: benchbase ports: - "5432:5432" postgres-ui: container_name: postgres-ui hostname: postgres-ui image: dpage/pgadmin4:latest environment: PGADMIN_DEFAULT_EMAIL: admin@admin.com PGADMIN_DEFAULT_PASSWORD: password PGADMIN_LISTEN_PORT: 8080 links: - postgres ports: - "8888:8080" volumes: - ${PWD}/servers.json:/pgadmin4/servers.json