forked from juspay/superposition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
39 lines (36 loc) · 959 Bytes
/
docker-compose.yaml
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
version: "3.4"
services:
postgres:
build: ./docker-compose/postgres/
container_name: superposition_postgres
ports:
- "5432:5432"
environment:
POSTGRES_PASSWORD: "docker"
POSTGRES_DB: "config"
restart: on-failure
network_mode: bridge
localstack:
build: ./docker-compose/localstack/
container_name: superposition_localstack
ports:
- "4510-4559:4510-4559" # external service port range
- "4566:4566" # LocalStack Edge Proxy
- "4571:4571"
network_mode: bridge
environment:
LOCALSTACK_SERVICES: s3, sns, sqs, logs, cloudwatch, kms
AWS_DEFAULT_REGION: ap-south-1
EDGE_PORT: 4566
# app:
# image: superposition_github:latest
# container_name: superposition_app
# ports:
# - "8080:8080"
# env_file:
# - .env
# depends_on:
# - postgres
# - localstack
# network_mode: bridge
# restart: on-failure