Files
techtracker/host/next/docker/compose.yml
2025-09-08 15:03:50 -05:00

19 lines
515 B
YAML

networks:
nginx-bridge: # You need to change this line to your defined network is as well
external: true
services:
techtracker-next:
build:
context: ../../..
dockerfile: host/next/docker/Dockerfile
image: ${CONTAINER_NAME}:alpine
container_name: ${CONTAINER_NAME}
env_file: [.env]
hostname: ${CONTAINER_NAME}
domainname: ${DOMAIN_NAME}
networks: ['${NETWORK:-nginx-bridge}']
#ports: ['${PORT}:3000']
tty: true
stdin_open: true
restart: unless-stopped