diff --git a/docker-compose.yml b/docker-compose.yml index 8af4869..9bfa0a0 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -188,6 +188,22 @@ services: config-generator: condition: service_completed_successfully + users-app: + image: ${DOCKER_REPO}/users-app:${IMAGEM_UNSTABLE_LATEST} + profiles: ["app"] + volumes: + - config-volume:/config-inject:ro + entrypoint: > + sh -c "cp /config-inject/config.json /usr/share/nginx/html/config.json && + nginx -g 'daemon off;'" + ports: + - "${FRONTEND_USERS_APP_INTERNAL_PORT}:${NGINX_DEFAULT_PORT}" + networks: + - app-network + depends_on: + config-generator: + condition: service_completed_successfully + suite-app: image: ${DOCKER_REPO}/suite-app:${IMAGEM_UNSTABLE_LATEST} profiles: ["app"]