From 2f4b1bb210451d20f9e48b51b9cc9dc20716c23e Mon Sep 17 00:00:00 2001 From: Christian Wolf Date: Wed, 26 Feb 2025 16:34:43 +0100 Subject: [PATCH] Fix settings in test env --- test-instance/.env | 1 + test-instance/.gitignore | 1 + test-instance/docker-compose.yml | 12 ++++-------- 3 files changed, 6 insertions(+), 8 deletions(-) create mode 100644 test-instance/.env create mode 100644 test-instance/.gitignore diff --git a/test-instance/.env b/test-instance/.env new file mode 100644 index 0000000..caf3ecf --- /dev/null +++ b/test-instance/.env @@ -0,0 +1 @@ +COMPOSE_PROJECT_NAME=test-joomla-reifenscheune diff --git a/test-instance/.gitignore b/test-instance/.gitignore new file mode 100644 index 0000000..eaf90e9 --- /dev/null +++ b/test-instance/.gitignore @@ -0,0 +1 @@ +/volumes/ diff --git a/test-instance/docker-compose.yml b/test-instance/docker-compose.yml index ede2fac..056709b 100644 --- a/test-instance/docker-compose.yml +++ b/test-instance/docker-compose.yml @@ -1,21 +1,17 @@ -version: '3.1' - volumes: db: services: joomla: - # image: joomla - build: joomla + image: joomla + # build: joomla # restart: always - links: - - db:mysql ports: - - 8002:80 + - 8003:80 volumes: - ./volumes/joomla:/var/www/html - ../template/src:/template:ro - - ../template/src:/var/www/html/templates/kita_zwergenland:ro + - ../template/src:/var/www/html/templates/reifenscheune:ro - ./sync:/sync:ro environment: JOOMLA_DB_HOST: db