Files
code/monip/docker-compose.yml
2026-08-22 20:25:18 +02:00

30 lines
586 B
YAML

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