This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
# FRONT | |
chronograf: | |
# Full tag list: https://hub.docker.com/r/library/chronograf/tags/ | |
image: chronograf | |
deploy: | |
replicas: 1 | |
placement: | |
constraints: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Firewall configuration for the MAPA Project | |
*filter | |
:INPUT DROP [0:0] | |
:FORWARD DROP [0:0] | |
:OUTPUT DROP [0:0] | |
:MAPA-INPUT - [0:0] | |
:MAPA-OUTPUT - [0:0] | |
-A INPUT -j MAPA-INPUT | |
-A OUTPUT -j MAPA-OUTPUT | |
-A MAPA-INPUT -i lo --source 127.0.0.1 --destination 127.0.0.1 -j ACCEPT |