Spaces:
Paused
Paused
File size: 347 Bytes
ae4e1e8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
version: '3'
services:
api:
build:
context: .
dockerfile: Dockerfile.api
ports:
- 8000:8000
networks:
- mynetwork
bot:
build:
context: .
dockerfile: Dockerfile.bot
ports:
- 80:80
depends_on:
- api
networks:
- mynetwork
networks:
mynetwork:
driver: bridge
|