From e5ba4381721f86348839399901d820704e9c0dcc Mon Sep 17 00:00:00 2001 From: ReachableCEO Date: Tue, 26 Nov 2024 11:19:29 -0600 Subject: [PATCH] good practice for production :) --- README.md | 12 +++++++++++- upstream/easy-gate/docker-compose.yml | 10 ++++++++++ webapps/easy-gate/docker-compose.yml | 10 ++++++++++ 3 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 upstream/easy-gate/docker-compose.yml create mode 100644 webapps/easy-gate/docker-compose.yml diff --git a/README.md b/README.md index edc7e8d..8c4912b 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,16 @@ This repo is for containers running on Charles (@ReachableCEO) laptop +## Portma| -## Portmap +| application | port | +| -------------- | ---- | +| wakaapi | 1001 | +| metrics | 1002 | +| wger | 1003 | +| tube-archivist | 1004 | +| dashboard | 1005 | +## Secrets + +Handled via (the in development) TSYS Secrets Manager : diff --git a/upstream/easy-gate/docker-compose.yml b/upstream/easy-gate/docker-compose.yml new file mode 100644 index 0000000..a5078c6 --- /dev/null +++ b/upstream/easy-gate/docker-compose.yml @@ -0,0 +1,10 @@ +services: + easy-gate: + image: r7wx/easy-gate:latest + build: . + container_name: easy-gate + restart: unless-stopped + ports: + - 8080:8080 + volumes: + - ./easy-gate.json:/etc/easy-gate/easy-gate.json diff --git a/webapps/easy-gate/docker-compose.yml b/webapps/easy-gate/docker-compose.yml new file mode 100644 index 0000000..5a39948 --- /dev/null +++ b/webapps/easy-gate/docker-compose.yml @@ -0,0 +1,10 @@ +services: + easy-gate: + image: r7wx/easy-gate:latest + build: . + container_name: easy-gate + restart: always + ports: + - 1005:8080 + volumes: + - ./easy-gate.json:/etc/easy-gate/easy-gate.json