version 1

This commit is contained in:
2025-11-20 19:24:33 +01:00
parent e8c5cfc113
commit 7094a52eb4
2 changed files with 23 additions and 0 deletions

View File

@@ -20,6 +20,8 @@ services:
WORDPRESS_CONFIG_EXTRA: |
define('WP_SITEURL', 'https://www.junisthomsen.de');
define('WP_HOME', 'https://www.junisthomsen.de');
define('WP_REDIS_HOST', 'redis');
define('WP_REDIS_PORT', 6379);
volumes:
- ./wordpress:/var/www/html
networks:
@@ -38,6 +40,13 @@ services:
- ./nginx-config:/etc/nginx/conf.d
networks:
- wordpress-app
redis:
image: redis:7-alpine
container_name: wp-junisthomsen-20251104-redis
restart: always
command: redis-server --save "" --appendonly no
networks:
- wordpress-app
networks:
wordpress-app: