hydra-sql/docker-compose.yml

42 lines
1.0 KiB
YAML
Raw Normal View History

2022-05-03 08:54:45 +02:00
version: "3.8"
2022-04-07 11:49:17 +02:00
services:
2022-05-03 08:54:45 +02:00
loginappsql:
container_name: loginappsql
2022-04-07 11:49:17 +02:00
build:
2022-05-03 08:54:45 +02:00
context: ./containers/loginappsql
2022-04-07 11:49:17 +02:00
args:
- HTTP_PROXY=${HTTP_PROXY}
- HTTPS_PROXY=${HTTPS_PROXY}
- http_proxy=${http_proxy}
- https_proxy=${https_proxy}
user: ${FIXUID:-1000}:${FIXGID:-1000}
ports:
2022-05-03 08:54:45 +02:00
- 5002:80
2022-04-07 11:49:17 +02:00
volumes:
2022-05-03 08:54:45 +02:00
- .:/loginappsql
2022-04-07 11:49:17 +02:00
- /etc/localtime:/etc/localtime:ro
- $HOME/.ssh:/root/.host-ssh:ro
tmpfs:
2022-05-03 08:54:45 +02:00
- /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}
2022-04-07 11:49:17 +02:00
- /tmp
extra_hosts:
2022-05-03 08:54:45 +02:00
- "loginappsql.local:127.0.0.1"
- "sso.mse.local:host-gateway"
2022-04-07 11:49:17 +02:00
- "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
2022-05-03 08:54:45 +02:00
networks:
- mse-network
networks:
mse-network:
external:
name: mse_default