Add docker-compose.yaml

This commit is contained in:
harish 2024-10-21 05:41:35 +00:00
commit 974e5e1745

18
docker-compose.yaml Normal file
View File

@ -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}