Files
sniph-bank/docker-compose.yml
foreverpyrite 8fe3f7d756 Changed directory structure and yapped...a lot
Still can start blabbering like crazy in the HTML if I feel like it.
2025-12-02 19:54:00 -05:00

17 lines
609 B
YAML

services:
sniph-bank:
container_name: sniph-bank
image: ghcr.io/astral-sh/uv:debian
environment:
# This just means that Python's print statements will immediately show up on the console
- PYTHONUNBUFFERED=1
ports:
# You can change the IP and first port number to change what the server listens on on the host.
# So if you don't have permission to bind, you could change the first 80 to 8080 and 443 to 4443
- 127.0.0.1:80:80
- 127.0.0.1:443:443
volumes:
- ./:/sniph-bank:rw
working_dir: /sniph-bank
entrypoint: ["uv", "run", "main.py"]