sapling/docker-compose.yml

21 lines
324 B
YAML
Raw Permalink Normal View History

2023-02-10 10:46:20 -08:00
version: '3.9'
services:
bot:
2023-02-10 10:46:20 -08:00
build:
context: .
target: development
env_file: .env
volumes:
- ./:/opt/app
postgresql:
image: postgres:14
restart: unless-stopped
container_name: bot-db
volumes:
- bot-db:/var/lib/postgresql/data/
env_file: .env
volumes:
bot-db: