commit 974e5e1745f1e03f2cacb982fdabb4e6a99c5bc3 Author: harish Date: Mon Oct 21 05:41:35 2024 +0000 Add docker-compose.yaml diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..8c3bede --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,18 @@ +version: "3.4" +services: + os: + build: + dockerfile: ./Dockerfile + context: ./ + tty: true + volumes: + - srvroot:/var/www + ports: + - "${PUBLIC_SSH_PORT}:22" + labels: + - traefik.http.services.os.loadbalancer.server.port=80 + environment: + - container=podman + - SERVICE_FQDN_OS_80 + # Public ssh port number v2 + - SSH_PUBLIC_PORT=${PUBLIC_SSH_PORT:-3300} \ No newline at end of file