30 lines
586 B
YAML
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
|