Files
IPAGo/docker-compose.yml
trojvn 940960700e 🚀 chore: update container port mapping
Update the port mapping in docker-compose.yml to use port 8888 instead of 8000 for the service. This change ensures compatibility with the updated application configuration.
2026-03-10 04:03:01 +03:00

21 lines
351 B
YAML

version: "3.8"
name: ${CONTAINER_NAME}
services:
ipago:
build:
context: .
dockerfile: Dockerfile
restart: always
container_name: ipago-${CONTAINER_NAME}
hostname: ipago
environment:
- CONTAINER_NAME=${CONTAINER_NAME}
- PORT=${PORT}
ports:
- "${PORT}:8888"
networks:
default:
name: ipago