Files
subdomain_server/docker-compose.yaml
Doc a8b254fa8b Tidying up for future changes
- Changelog started. Existing version 0.0.2
- Add section for application wide TODOs. Each moved to changelog when done
- Adjusted .gitignore and .dockerignore
- Updated image base to python:3.10-slim-trixie. Cleaned up image build.
- Added default environment values to compose file
- Cleaned up pyproject.toml.
- Deleted unused gui-tk.py.
2025-10-03 16:00:52 -04:00

26 lines
673 B
YAML

services:
subdomain:
container_name: subdomain_service
build:
context: .
dockerfile: Dockerfile
networks:
backend-net:
ipv4_address: 172.18.0.52
ports:
- "5232:5232"
volumes:
- /home/doc/src/my/subdomain_server/config:/app/config:ro
environment:
- AUTH_FILE=/app/config/config.yaml
- LOG_LEVEL=DEBUG
- PORT=5232
- BINDING=0.0.0.0
restart: always
networks:
backend-net:
external: true
# cp -ra ./src README.md LICENSE pyproject.toml scripts tests docs docker/project/