totvs-dtsenv-cli
Version:
TOTVS Datasul Environment Command Line
42 lines (41 loc) • 957 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.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
`;