mirror of
https://github.com/vas3k/TaxHacker.git
synced 2026-01-12 00:41:15 -06:00
30 lines
633 B
YAML
30 lines
633 B
YAML
services:
|
|
app:
|
|
image: ghcr.io/vas3k/taxhacker:latest
|
|
container_name: taxhacker_app
|
|
networks:
|
|
- taxhacker_network
|
|
environment:
|
|
- NODE_ENV=production
|
|
- BASE_URL=https://taxhacker.app
|
|
- SELF_HOSTED_MODE=false
|
|
- UPLOAD_PATH=/app/data/uploads
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./data:/app/data
|
|
restart: unless-stopped
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|
|
ports:
|
|
- "127.0.0.1:7331:7331"
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "100M"
|
|
max-file: "3"
|
|
|
|
networks:
|
|
taxhacker_network:
|
|
driver: bridge
|