This commit is contained in:
2026-08-22 20:25:18 +02:00
commit f341efe056
6 changed files with 498 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
services:
fpm-monip:
image: php:8.2-fpm-alpine
container_name: fpm-monip
restart: unless-stopped
volumes:
- ./src:/var/www/html
environment:
TZ: "Europe/Paris"
IPINFO_TOKEN: ${IPINFO_TOKEN}
networks:
- traefik-net
monip:
image: nginx:alpine
container_name: monip
restart: unless-stopped
# ports:
# - "8030:80"
volumes:
- ./src:/var/www/html
- ./nginx/conf.d:/etc/nginx/conf.d
environment:
TZ: "Europe/Paris"
networks:
- traefik-net
networks:
traefik-net:
external: true