-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-poetry.yml
33 lines (29 loc) · 1.11 KB
/
docker-compose-poetry.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# WARNING: Do not deploy this configuration directly to a production environment
#
# The tutorial docker-compose files have not been written for production deployment and will not
# scale. A proper architecture has been sacrificed to keep the narrative focused on the learning
# goals, they are just used to deploy everything onto a single Docker machine.
# They also contain various obvious security flaws - passwords in plain text, no load balancing,
# no use of HTTPS and so on.
#
# This is all to avoid the need of multiple machines, generating certificates, encrypting secrets
# and so on, purely so that a single docker-compose file can be read as an example to build on,
# not use directly.
version: "3.7"
services:
python_poetry:
build: ./python_poetry
hostname: python_poetry
container_name: python_poetry
#restart: always
volumes:
- ./python_poetry/data/conf.json:/app/data/conf.json
networks:
- mqtt_network
logging:
options:
max-size: "10m"
max-file: "3"
networks:
mqtt_network:
driver: bridge