write-ups-challenges-2020-2021/gotta_catch_em_all/docker-compose.yml

14 lines
188 B
YAML
Raw Permalink Normal View History

2022-11-24 17:03:20 +00:00
version: '3.1'
services:
backend:
build: backend
restart: always
ports:
- "5000:5000"
frontend:
build: frontend
restart: always
ports:
- "4000:80"