Created
December 22, 2021 15:11
-
-
Save riskiwah/822c9039d0c2de78b9d52362c7f5b5f1 to your computer and use it in GitHub Desktop.
secret-stack-dev
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
redis: | |
image: redis:alpine | |
hostname: redis | |
ports: | |
- "6379:6379" | |
postgres: | |
image: postgres:9.6.23-alpine3.14 | |
hostname: postgres | |
ports: | |
- "5432:5432" | |
environment: | |
- POSTGRES_USER=user | |
- POSTGRES_PASSWORD=secret-stack | |
nsqlookupd: | |
image: nsqio/nsq:v1.2.1 | |
hostname: nsqlookupd | |
command: /nsqlookupd | |
ports: | |
- "4160:4160" | |
- "4161:4161" | |
nsqd: | |
image: nsqio/nsq:v1.2.1 | |
hostname: nsqd | |
command: /nsqd --lookupd-tcp-address=nsqlookupd:4160 | |
depends_on: | |
- nsqlookupd | |
ports: | |
- "4150:4150" | |
- "4151:4151" | |
nsqadmin: | |
image: nsqio/nsq:v1.2.1 | |
hostname: nsqadmin | |
command: /nsqadmin --lookupd-http-address=nsqlookupd:4161 | |
depends_on: | |
- nsqlookupd | |
ports: | |
- "4171:4171" | |
# | |
# Checker stack here! | |
# | |
adminer: | |
image: adminer | |
hostname: adminer | |
ports: | |
- "8200:8080" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment