172 похожих чатов

Виноват, вот мой docker-compose файл, Dockerfile-ы нужны? version: '3' volumes:

production_postgres_data: {}
production_postgres_data_backups: {}

services:
django: &django
build:
context: .
dockerfile: ./compose/production/django/Dockerfile
image: meditation_production_django
depends_on:
- postgres
- redis
env_file:
- ./.envs/.production/.django
- ./.envs/.production/.postgres
command: /start

postgres:
build:
context: .
dockerfile: ./compose/production/postgres/Dockerfile
image: meditation_production_postgres
volumes:
- production_postgres_data:/var/lib/postgresql/data
- production_postgres_data_backups:/backups
env_file:
- ./.envs/.production/.postgres

traefik:
build:
context: .
dockerfile: ./compose/production/traefik/Dockerfile
image: meditation_production_traefik
depends_on:
- django
ports:
- "0.0.0.0:80:80"

redis:
image: redis:5.0

celeryworker:
<<: *django
image: meditation_production_celeryworker
command: /start-celeryworker

celerybeat:
<<: *django
image: meditation_production_celerybeat
command: /start-celerybeat

2 ответов

11 просмотров

Почему ты не используешь провайдер докера и не разруливаешь все через него ?

whoami2: image: containous/whoami labels: - traefik.http.routers.whoami2.rule=host(`whoami2.local`) - traefik.http.services.whoami2.loadbalancer.server.port=50051 traefik: image: traefik restart: always network_mode: host image: traefik command: > --api.insecure=true --providers.docker=true --accesslog --log.level=debug --providers.docker.watch --metrics.prometheus=true --serverstransport.insecureskipverify --entrypoints.web.address=":80" --entrypoints.websecure.address=":443" volumes: - /var/run/docker.sock:/var/run/docker.sock # So that Traefik can listen to the Docker events ports: - 880:80 - 8180:8080 - 4443:443

Похожие вопросы

Обсуждают сегодня

30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
Как передать управляющий символ в открытую через CreateProcess консоль? Собсна, есть процедура: procedure TRedirectThread.WriteData(Data: OEMString); var Written: Cardinal;...
Serjone
6
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Всем привет! Имеется функция: function IsValidChar(ch: UTF8Char): Boolean; var i: Integer; ValidChars: AnsiString; begin ValidChars := 'abcdefghijklmnopqrstuvwxyzABCDE...
Евгений
44
Карта сайта