20 lines
353 B
YAML
20 lines
353 B
YAML
version: "3"
|
|
|
|
services:
|
|
telegram-bot:
|
|
container_name: telegram-bot
|
|
networks:
|
|
- automatization_network
|
|
|
|
redis:
|
|
image: redis
|
|
container_name: redis
|
|
volumes:
|
|
- ./redis-data:/data
|
|
command:
|
|
- redis-server --requirepass nikitos1
|
|
networks:
|
|
- automatization_network
|
|
|
|
networks:
|
|
automatization_network: |