Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenVibesOnly committed Oct 18, 2024
2 parents 6ceb26f + c97690f commit c3eff29
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
volumes:
pg_data:
redisdata:

services:
redis:
image: redis:latest
container_name: redis_container
container_name: scid-redis
environment:
- ALLOW_EMPTY_PASSWORD=yes
ports:
- '6379:6379'
volumes:
- ./redisdata:/data
- redisdata:/data
db:
container_name: scid-db
image: postgres:13
Expand All @@ -22,7 +23,7 @@ services:
depends_on:
- db
container_name: scid-bot
# build: . # раскомментить для работы локально
image: greenvibe/scid_bot_3
build: . # раскомментить для работы локально
# image: greenvibe/scid_bot_3
command: bash -c "cd app && poetry run alembic upgrade head && poetry run python main.py"
env_file: .env

0 comments on commit c3eff29

Please sign in to comment.