export const value = `
version: "3"
services:
  entropy:
    image: harbur/haveged
    container_name: LinuxEntropy
    restart: always
    privileged: true
    environment:
      TZ: "Brazil/East"
  portainer:
    image: portainer/portainer
    restart: always
    container_name: Portainer
    networks:
      - local
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    command: "-d /data"
    ports:
      - "9000:9000"
    environment:
      TZ: "Brazil/East"
  compose-ui:
    image: francescou/docker-compose-ui
    restart: always
    container_name: DockerComposeUI
    working_dir: /projects
    ports:
      - "9100:5000"
    volumes:
        - /var/run/docker.sock:/var/run/docker.sock
        - /home/rootfwk/docker/projects:/projects
    environment:
      TZ: "Brazil/East"
networks:
  local:
    driver: bridge
`;