File: docker-compose.yml

package info (click to toggle)
python-clickhouse-driver 0.2.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,516 kB
  • sloc: python: 10,950; pascal: 42; makefile: 31; sh: 3
file content (16 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: '3'

services:
  clickhouse-server:
    image: "$ORG/clickhouse-server:$VERSION"
    container_name: test-clickhouse-server
    environment:
      - TZ=Europe/Moscow
    ports:
      - "127.0.0.1:9000:9000"

  clickhouse-client:
    image: "$ORG/clickhouse-server:$VERSION"
    container_name: test-clickhouse-client
    entrypoint: /bin/sh
    command: [-c, 'while :; do sleep 1; done']