42 lines
1.0 KiB
YAML
42 lines
1.0 KiB
YAML
version: "3.8"
|
|
services:
|
|
loginappsql:
|
|
container_name: loginappsql
|
|
build:
|
|
context: ./containers/loginappsql
|
|
args:
|
|
- HTTP_PROXY=${HTTP_PROXY}
|
|
- HTTPS_PROXY=${HTTPS_PROXY}
|
|
- http_proxy=${http_proxy}
|
|
- https_proxy=${https_proxy}
|
|
user: ${FIXUID:-1000}:${FIXGID:-1000}
|
|
ports:
|
|
- 5002:80
|
|
volumes:
|
|
- .:/loginappsql
|
|
- /etc/localtime:/etc/localtime:ro
|
|
- $HOME/.ssh:/root/.host-ssh:ro
|
|
tmpfs:
|
|
- /loginappsql/var/logs:uid=${FIXUID:-1000},gid=${FIXGID:-1000}
|
|
- /loginappsql/var/cache:uid=${FIXUID:-1000},gid=${FIXGID:-1000}
|
|
- /loginappsql/public/build:uid=${FIXUID:-1000},gid=${FIXGID:-1000}
|
|
- /tmp
|
|
|
|
extra_hosts:
|
|
- "loginappsql.local:127.0.0.1"
|
|
- "sso.mse.local:host-gateway"
|
|
- "host.docker.internal:host-gateway"
|
|
environment:
|
|
- HTTP_PROXY=${HTTP_PROXY}
|
|
- HTTPS_PROXY=${HTTPS_PROXY}
|
|
- http_proxy=${http_proxy}
|
|
- https_proxy=${https_proxy}
|
|
- TZ=Europe/Paris
|
|
networks:
|
|
- mse-network
|
|
|
|
networks:
|
|
mse-network:
|
|
external:
|
|
name: mse_default
|