mirror of
https://github.com/philip306/countapi.git
synced 2024-06-15 10:55:23 +03:00
12 lines
204 B
YAML
12 lines
204 B
YAML
|
version: '2'
|
||
|
services:
|
||
|
web:
|
||
|
build: .
|
||
|
ports:
|
||
|
- "8000:8000"
|
||
|
volumes:
|
||
|
- .:/countapi
|
||
|
depends_on:
|
||
|
- redis
|
||
|
redis:
|
||
|
image: redis
|