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.
21 lines
351 B
YAML
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
|