1
0
mirror of https://github.com/daniviga/bite.git synced 2024-11-23 05:16:13 +01:00
bite/docker/docker-compose.yml

117 lines
2.8 KiB
YAML
Raw Normal View History

2020-06-21 23:34:54 +02:00
# -*- coding: utf-8 -*-
# vim: tabstop=2 shiftwidth=2 softtabstop=2
#
# BITE - A Basic/IoT/Example
2021-03-21 16:18:44 +01:00
# Copyright (C) 2020-2021 Daniele Viganò <daniele@vigano.me>
2020-06-21 23:34:54 +02:00
#
# BITE is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# BITE is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2020-06-02 00:57:20 +02:00
version: "3.7"
networks:
net:
volumes:
pgdata:
staticdata:
2020-06-02 00:57:20 +02:00
x-op-service-default: &service_default
restart: always # unless-stopped
2020-06-02 00:57:20 +02:00
init: true
services:
ntpd:
<<: *service_default
build:
context: ./ntpd
image: daniviga/ntpd
networks:
- net
ports:
- "${CUSTOM_DOCKER_IP:-0.0.0.0}:123:123/udp"
2020-06-02 00:57:20 +02:00
timescale:
<<: *service_default
image: timescale/timescaledb:latest-pg12
environment:
POSTGRES_USER: "bite"
2020-06-02 00:57:20 +02:00
POSTGRES_PASSWORD: "password"
volumes:
- "pgdata:/var/lib/postgresql/data"
networks:
- net
2020-06-16 22:48:58 +02:00
broker:
2020-06-02 23:20:34 +02:00
<<: *service_default
2021-03-19 10:11:55 +01:00
image: eclipse-mosquitto:1.6
volumes:
- "./mqtt/mosquitto/mosquitto.conf:/mosquitto/config/mosquitto.conf"
2020-06-02 23:20:34 +02:00
networks:
- net
ports:
- "${CUSTOM_DOCKER_IP:-0.0.0.0}:1883:1883"
ingress:
2020-06-16 22:48:58 +02:00
<<: *service_default
2020-06-18 00:02:28 +02:00
image: nginx:stable-alpine
2021-03-19 10:11:55 +01:00
environment:
NGINX_ENTRYPOINT_QUIET_LOGS: 1
ports:
- "${CUSTOM_DOCKER_IP:-0.0.0.0}:80:80"
networks:
- net
volumes:
- staticdata:/srv/appdata/bite/static
- ./ingress/nginx.conf:/etc/nginx/nginx.conf
2020-06-18 00:02:28 +02:00
bite:
<<: *service_default
build:
context: ..
dockerfile: ./docker/django/Dockerfile
image: daniviga/bite
command: ["gunicorn", "-b", "0.0.0.0:8000", "bite.wsgi:application"]
networks:
- net
depends_on:
2020-06-15 22:53:02 +02:00
- ingress
- data-migration
- timescale
data-migration:
image: daniviga/bite
command: ["dockerize", "-wait", "tcp://timescale:5432", "python3", "manage.py", "migrate", "--noinput"]
networks:
- net
depends_on:
- timescale
static-files:
image: daniviga/bite
volumes:
- staticdata:/srv/appdata/bite/static
command: ["python3", "manage.py", "collectstatic", "--noinput"]
mqtt-to-db:
<<: *service_default
image: daniviga/bite
command: ["python3", "manage.py", "mqtt-to-db"]
networks:
- net
depends_on:
- data-migration
- timescale
2020-06-16 22:48:58 +02:00
- broker