18 lines
410 B
YAML
18 lines
410 B
YAML
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} |