finlion-website/docker-compose.yml
2024-12-09 22:53:02 -06:00

23 lines
362 B
YAML

version: '3.8'
services:
web:
build:
context: .
dockerfile: Dockerfile
pull_policy: build
ports:
- "805:805"
networks:
- caddy_network
env_file:
- .env
environment:
- NODE_ENV=production
- PORT=805
- VERSION=1.2
restart: unless-stopped
networks:
caddy_network:
external: true