-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
73 lines (72 loc) · 1.8 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
version: "3"
services:
# api:
# image: node:16
# volumes:
# - ./node_modules:/node_modules
# - ./package.json:/package.json
# - ./tsconfig.json:/tsconfig.json
# - ./src:/src
# - ./.env:/.env
# - ./ormconfig.js:/ormconfig.js
# - ./public:/public
# ports:
# - 3000:3000
# - 9229:9229
# depends_on: # only starts after these services
# - postgres
# - zookeeper
# - kafka
# - redis
# restart: "unless-stopped" # restart after crash?
# environment:
# - IS_DOCKER=true
# - DB_HOST=postgres
# - DB_PORT=5432
# - DB_USERNAME=postgres
# - DB_PASSWORD=password
# networks:
# - backend
# command: npx nodemon --inspect=0.0.0.0:9229 --signal SIGINT --nolazy --legacy-watch src/server.ts
# postgres:
# image: "postgres:14"
# container_name: "typeorm-postgres"
# restart: "unless-stopped"
# expose:
# - "5432"
# ports:
# - "5431:5432"
# environment:
# POSTGRES_USER: "postgres"
# POSTGRES_PASSWORD: "password"
# POSTGRES_DB: "endoh.io"
# networks:
# - backend
# zookeeper:
# image: "bitnami/zookeeper:latest"
# ports:
# - "2181:2181"
# environment:
# - ALLOW_ANONYMOUS_LOGIN=yes
# kafka:
# image: "bitnami/kafka:latest"
# container_name: "kafka"
# ports:
# - "9092:9092"
# environment:
# - KAFKA_BROKER_ID=1
# - KAFKA_LISTENERS=PLAINTEXT://:9092
# - KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://127.0.0.1:9092
# - KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181
# - ALLOW_PLAINTEXT_LISTENER=yes
# depends_on:
# - zookeeper
redis:
image: redis:7.0.2-alpine
ports:
- 6379:6379
networks:
- backend
networks:
backend:
driver: "bridge"