stacker.news/docker-compose.yml

146 lines
3.3 KiB
YAML
Raw Normal View History

2021-10-20 19:57:11 +00:00
version: "3"
services:
db:
container_name: db
build: ./db
2021-10-20 19:57:11 +00:00
restart: always
healthcheck:
test: ["CMD-SHELL", "pg_isready -U sn -d stackernews"]
interval: 5s
timeout: 5s
retries: 5
2021-10-20 19:57:11 +00:00
expose:
- "5432"
ports:
- "5431:5432"
env_file:
2024-03-06 23:38:34 +00:00
- ./.env.sndev
volumes:
2024-03-06 23:38:34 +00:00
- ./anon.sql:/docker-entrypoint-initdb.d/anon.sql
- db:/var/lib/postgresql/data
2021-10-20 19:57:11 +00:00
app:
container_name: app
build: ./
2024-03-06 23:38:34 +00:00
restart: always
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000"]
interval: 10s
timeout: 10s
retries: 10
start_period: 1m30s
2021-10-20 19:57:11 +00:00
depends_on:
2024-03-06 23:38:34 +00:00
db:
condition: service_healthy
restart: true
opensearch:
condition: service_healthy
restart: true
2021-10-20 19:57:11 +00:00
env_file:
2024-03-06 23:38:34 +00:00
- ./.env.sndev
expose:
- "3000"
2021-10-20 19:57:11 +00:00
ports:
- "3000:3000"
volumes:
- ./:/app
links:
- db
- opensearch
worker:
container_name: worker
build: ./worker
2024-03-06 23:38:34 +00:00
restart: always
depends_on:
db:
2024-03-06 23:38:34 +00:00
condition: service_healthy
restart: true
app:
condition: service_healthy
restart: true
2024-03-06 23:38:34 +00:00
opensearch:
condition: service_healthy
restart: true
env_file:
2024-03-06 23:38:34 +00:00
- ./.env.sndev
ports:
- "8080:8080"
volumes:
- ./:/app
links:
- db
- app
- opensearch
entrypoint: ["/bin/sh", "-c"]
command:
2024-03-06 23:38:34 +00:00
- npm run worker:dev
imgproxy:
container_name: imgproxy
image: darthsim/imgproxy:v3.18.1
healthcheck:
test: [ "CMD", "imgproxy", "health" ]
timeout: 10s
interval: 10s
retries: 3
restart: always
env_file:
2024-03-06 23:38:34 +00:00
- ./.env.sndev
expose:
- "8080"
ports:
- "3001:8080"
links:
- app
opensearch:
image: opensearchproject/opensearch:latest
container_name: opensearch
2024-03-06 23:38:34 +00:00
healthcheck:
test: ["CMD-SHELL", "curl -ku admin:admin --silent --fail localhost:9200/_cluster/health || exit 1"]
interval: 10s
timeout: 10s
retries: 10
restart: always
environment:
- discovery.type=single-node
- plugins.security.disabled=true
ports:
- 9200:9200 # REST API
- 9600:9600 # Performance Analyzer
volumes:
- os:/usr/share/opensearch/data
command: >
bash -c '
set -m
/usr/share/opensearch/opensearch-docker-entrypoint.sh &
until curl -sS "http://localhost:9200/_cat/health?h=status" -ku admin:admin | grep -q "green\|yellow"; do
echo "Waiting for OpenSearch to start..."
sleep 1
done
echo "OpenSearch started."
curl -X PUT "http://localhost:9200/item" -ku admin:admin
echo "OpenSearch index created."
fg
'
os-dashboard:
image: opensearchproject/opensearch-dashboards:latest
container_name: os-dashboard
restart: always
depends_on:
opensearch:
condition: service_healthy
restart: true
environment:
- opensearch.ssl.verificationMode=none
- server.ssl.enabled=false
- plugins.security.disabled=true
- DISABLE_SECURITY_DASHBOARDS_PLUGIN=true
- OPENSEARCH_HOSTS=http://opensearch:9200
ports:
- 5601:5601
expose:
- "5601"
links:
- opensearch
volumes:
db:
os: