1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- version: '3'
- networks:
- internal-pod:
- internal: true
- external-pod:
- internal: false
- services:
- mariadb:
- image: mariadb:latest
- environment:
- MYSQL_ROOT_PASSWORD: rootpassfordev
- MYSQL_DATABASE: dolibarr
- ports:
- - "3306:3306"
- networks:
- - internal-pod
- - external-pod
- phpmyadmin:
- image: phpmyadmin/phpmyadmin
- environment:
- PMA_HOST: mariadb
- depends_on:
- - mariadb
- ports:
- - "8080:80"
- networks:
- - internal-pod
- - external-pod
- web:
- build: .
- environment:
- HOST_USER_ID: $HOST_USER_ID
- PHP_INI_DATE_TIMEZONE: $PHP_INI_DATE_TIMEZONE
- PHP_INI_MEMORY_LIMIT: $PHP_INI_MEMORY_LIMIT
- volumes:
- - ../../htdocs:/var/www/html/
- - ../../documents:/var/documents
- ports:
- - "80:80"
- - "9000:9000"
- depends_on:
- - mariadb
- - mail
- networks:
- - internal-pod
- - external-pod
- extra_hosts:
- - "localhost.localdomain:127.0.0.1"
- - "host.docker.internal:host-gateway"
- mail:
- image: maildev/maildev
- ports:
- - "8081:80"
- - "25:25"
- networks:
- - internal-pod
- - external-pod
|