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
# quantumobject/docker-zoneminder:1.31.1 build from https://github.com/marcelo-ochoa/docker-zoneminder | |
# dockercloud/haproxy:1.6.7.1 build from https://github.com/marcelo-ochoa/dockercloud-haproxy | |
version: '3.2' | |
services: | |
db: | |
image: mysql/mysql-server:5.7 | |
networks: | |
- net | |
volumes: |
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.2" | |
services: | |
agent_dtics: | |
image: portainer/agent | |
environment: | |
# REQUIRED: Should be equal to the service name prefixed by "tasks." when | |
# deployed inside an overlay network | |
AGENT_CLUSTER_ADDR: tasks.portainer_agent_dtics | |
# AGENT_PORT: 9001 |
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: | |
dc: | |
image: portainer/agent | |
environment: | |
# REQUIRED: Should be equal to the service name prefixed by "tasks." when | |
# deployed inside an overlay network | |
AGENT_CLUSTER_ADDR: tasks.portainer_agent_dc | |
VIRTUAL_HOST: "https://agentsdc.exa.unicen.edu.ar" |
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.3' | |
services: | |
server: | |
image: dockercloud/haproxy:1.6.7 | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock:ro | |
- proxy_certs:/certs | |
ports: | |
- target: 80 |
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.3' | |
services: | |
mysql: | |
image: slab/pandorafms-mysql:v7.0NG.722.7677 | |
hostname: mysql | |
volumes: | |
- db_data:/var/lib/mysql | |
restart: always | |
environment: |
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
# Cada 1 hora | |
0 * * * * root run-task mon_cron | |
# Domigo 2:30am GLPI 7606 | |
30 2 * * 0 root run-task letsencrypt_renew | |
# Domigo 1:30am GLPI 7751 | |
30 1 * * 0 root run-task registry_purge |
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
FROM oracle/database:12.2.0.1-ee as rdbms-ee | |
FROM oraclelinux:7-slim | |
RUN yum -y install libaio && \ | |
rm -rf /var/cache/yum | |
COPY --from=rdbms-ee /opt/oracle/product/12.2.0.1/dbhome_1/bin/orion /usr/lib/oracle/12.2/client64/bin/ | |
COPY --from=rdbms-ee \ | |
/opt/oracle/product/12.2.0.1/dbhome_1/lib/libclntsh.so.12.1 \ |
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
FROM store/oracle/database-enterprise:12.2.0.1 as rdbms-ee | |
WORKDIR / | |
RUN tar xvf /tmp/dbsetup/dbtar/db12.2.0.1.0.tar.gz | |
FROM oraclelinux:7-slim | |
RUN yum -y install libaio && \ | |
rm -rf /var/cache/yum | |
COPY --from=rdbms-ee /u01/app/oracle/product/12.2.0/dbhome_1/bin/orion /usr/lib/oracle/12.2/client64/bin/ |
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.2' | |
volumes: | |
dbdata: | |
driver: local | |
driver_opts: | |
type: nfs | |
o: addr=10.1.253.110,rw,intr,hard,timeo=600,wsize=32768,rsize=32768,vers=4,tcp | |
device: ":/dbdata/test" |
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.6' | |
services: | |
pc: | |
image: oracle/database:18.4.0-xe-nfs | |
hostname: pc | |
volumes: | |
- db_data:/opt/oracle/oradata # persistent oracle database data. | |
- type: tmpfs | |
target: /dev/shm | |
tmpfs: |
OlderNewer