13 lines
262 B
YAML
13 lines
262 B
YAML
version: '3'
|
|
services:
|
|
web:
|
|
build: .
|
|
expose:
|
|
- "42042"
|
|
volumes:
|
|
- ./src:/usr/src/app
|
|
working_dir: /usr/src/app
|
|
command: "python -u main.py"
|
|
environment:
|
|
- "WASCHMARKENSECRET=replace this we dont want this in the repo"
|