From 55c230423381835bc3529cbe2e5b8d19e988052b Mon Sep 17 00:00:00 2001 From: Administrator Date: Sat, 18 Mar 2023 04:55:48 +0100 Subject: [PATCH] Update .gitlab-ci-compose.yml --- .gitlab-ci-compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci-compose.yml b/.gitlab-ci-compose.yml index f6987d5..bb8ca68 100644 --- a/.gitlab-ci-compose.yml +++ b/.gitlab-ci-compose.yml @@ -1,12 +1,12 @@ services: #### nginx (Webserver - Optional) - web-http: + powerflux_http: pull_policy: build build: context: ./src dockerfile: ./ct_nginx/Dockerfile - image: gitlab-registry.poweron.dk:powerflux_http + image: gitlab-registry.poweron.dk/root/eloparser_public:powerflux_http working_dir: /app volumes: - vol_powerflux:/app @@ -16,12 +16,12 @@ services: - "8181:80" #### PHP App (Required) - php-fpm: + powerflux_app: pull_policy: build build: context: ./src dockerfile: ./ct_php-fpm/Dockerfile - image: gitlab-registry.poweron.dk:powerflux_app + image: gitlab-registry.poweron.dk/root/eloparser_public:powerflux_app volumes: - vol_powerflux:/app networks: -- GitLab