diff --git a/dashy-docker-compose.yml b/dashy-docker-compose.yml new file mode 100644 index 0000000..5d38891 --- /dev/null +++ b/dashy-docker-compose.yml @@ -0,0 +1,19 @@ +version: "3.7" +services: + dashy: + container_name: dashy + image: lissy93/dashy:2.0.6 + volumes: + - /mnt/docker_volumes/dashy/config/conf.yml:/app/public/conf.yml + ports: + - 4000:80 + environment: + - TZ=Europe/London + - NODE_ENV=production + restart: unless-stopped + healthcheck: + test: ['CMD', 'node', '/app/services/healthcheck'] + interval: 1m30s + timeout: 10s + retries: 3 + start_period: 40s diff --git a/glances-docker-compose.yml b/glances-docker-compose.yml new file mode 100644 index 0000000..1646251 --- /dev/null +++ b/glances-docker-compose.yml @@ -0,0 +1,13 @@ +version: '3.7' + +services: + glances: + container_name: glances + image: nicolargo/glances:alpine-3.2.4.2 + restart: always + volumes: + - /var/run/docker.sock:/var/run/docker.sock + ports: + - 61208-61209:61208-61209 + environment: + - "GLANCES_OPT=-w" \ No newline at end of file