coolify/docker-compose-dev.yaml

36 lines
781 B
YAML
Raw Normal View History

2022-02-10 15:47:44 +01:00
version: '3.8'
services:
redis:
2022-04-14 23:48:52 +02:00
image: redis:6.2-alpine
2022-02-10 15:47:44 +01:00
container_name: coolify-redis
networks:
- coolify-infra
ports:
- target: 6379
published: 6379
protocol: tcp
mode: host
2022-04-20 13:33:04 +02:00
# fluentbit:
# container_name: coolify-fluentbit
# build:
# context: ./data/fluentd
# dockerfile: Dockerfile-dev
# ports:
# - target: 24224
# published: 24224
# protocol: tcp
# mode: host
# - target: 24224
# published: 24224
# protocol: udp
# mode: host
# networks:
# - coolify-infra
# extra_hosts:
# - 'host.docker.internal:host-gateway'
2022-02-10 15:47:44 +01:00
networks:
coolify-infra:
attachable: true
name: coolify-infra