mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-18 04:40:59 -05:00
Compare commits
No commits in common. "a7802e5e7880c7a71cc6a0d2fdd4fc69305d013e" and "4daf56dcb43b9b20a579b9d2bd0288303dd970a9" have entirely different histories.
a7802e5e78
...
4daf56dcb4
@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
bot:
|
bot:
|
||||||
container_name: daggerbot
|
container_name: daggerbot-prod
|
||||||
build: .
|
build: .
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -1,19 +1,21 @@
|
|||||||
services:
|
services:
|
||||||
cache:
|
cache:
|
||||||
container_name: daggerbot-redis
|
container_name: redis-cache
|
||||||
image: redis/redis-stack-server:7.2.0-v9
|
image: redis/redis-stack-server:7.2.0-v6
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- 6379:6379/tcp
|
- 6379:6379/tcp
|
||||||
db:
|
db:
|
||||||
container_name: daggerbot-postgres
|
container_name: postgres-master
|
||||||
image: postgres:16.2-alpine3.19
|
image: postgres:16.2-alpine3.19
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432/tcp
|
- 5432:5432/tcp
|
||||||
volumes:
|
volumes:
|
||||||
- /var/lib/docker/volumes/daggerbot-db:/var/lib/postgresql/data:rw
|
- /var/lib/docker/volumes/daggerbot-db:/var/lib/postgresql/data:rw
|
||||||
|
- ./postgres-replica-stuff/configs/postgres-hba.conf:/var/lib/postgresql/data/pg_hba.conf:rw
|
||||||
|
- ./postgres-replica-stuff/configs/postgres.conf:/var/lib/postgresql/data/postgresql.conf:rw
|
||||||
environment:
|
environment:
|
||||||
#POSTGRES_USER: ${POSTGRES_USER}
|
POSTGRES_USER: ${POSTGRES_USER}
|
||||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
|
||||||
POSTGRES_DB: ${POSTGRES_DB}
|
POSTGRES_DB: ${POSTGRES_DB}
|
||||||
|
Loading…
Reference in New Issue
Block a user