bot / docker-compose.yml
MWilinski's picture
deploy 1
ae4e1e8
raw
history blame contribute delete
No virus
347 Bytes
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