Kon/docker-compose.yml

29 lines
705 B
YAML
Raw Normal View History

services:
bot:
2024-01-29 03:50:03 -05:00
container_name: kon
2024-07-27 19:39:56 -04:00
#image: git.toast-server.net/toast/kon:main
build: .
restart: unless-stopped
2024-07-27 19:39:56 -04:00
depends_on:
- cache
cache:
container_name: kon-redis
2024-08-02 23:04:19 -04:00
image: redis/redis-stack-server:7.4.0-v0
2024-07-27 19:39:56 -04:00
restart: unless-stopped
ports:
- 37935:6379/tcp
2024-07-19 19:56:58 -04:00
# db:
# container_name: kon-database
2024-08-02 23:04:19 -04:00
# image: postgres:16.3-alpine3.20
2024-07-19 19:56:58 -04:00
# restart: unless-stopped
# ports:
# - 37930:5432/tcp
# volumes:
# - /var/lib/docker/volumes/kon-database:/var/lib/postgresql/data:rw
# environment:
2024-08-02 23:04:19 -04:00
# TZ: Australia/Sydney
2024-07-19 19:56:58 -04:00
# POSTGRES_USER: ${POSTGRES_USER}
# POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
# POSTGRES_DB: ${POSTGRES_DB}