1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
services: bot: build: . env_file: - .env volumes: - ./config:/app/config depends_on: - redis - postgres redis: image: docker.io/redis:alpine postgres: image: postgres:alpine env_file: - .env volumes: - ./data:/var/lib/postgresql/data