24 lines
355 B
YAML
24 lines
355 B
YAML
networks:
|
|
counter-net:
|
|
|
|
volumes:
|
|
counter-vol:
|
|
|
|
services:
|
|
web-fe:
|
|
build: .
|
|
command: python app.py
|
|
ports:
|
|
- target: 8080
|
|
published: 5001
|
|
networks:
|
|
- counter-net
|
|
volumes:
|
|
- type: volume
|
|
source: counter-vol
|
|
target: /app
|
|
redis:
|
|
image: "redis:alpine"
|
|
networks:
|
|
counter-net:
|
|
|