1
0
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.

2 changed files with 7 additions and 5 deletions

View File

@ -1,6 +1,6 @@
services:
bot:
container_name: daggerbot
container_name: daggerbot-prod
build: .
restart: unless-stopped
volumes:

View File

@ -1,19 +1,21 @@
services:
cache:
container_name: daggerbot-redis
image: redis/redis-stack-server:7.2.0-v9
container_name: redis-cache
image: redis/redis-stack-server:7.2.0-v6
restart: unless-stopped
ports:
- 6379:6379/tcp
db:
container_name: daggerbot-postgres
container_name: postgres-master
image: postgres:16.2-alpine3.19
restart: unless-stopped
ports:
- 5432:5432/tcp
volumes:
- /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:
#POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
POSTGRES_DB: ${POSTGRES_DB}