-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
36 lines (31 loc) · 904 Bytes
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
services:
dms:
image: andrglo/everest:latest
hostname: json-schema-entity
container_name: json-schema-entity-dms-1
command: tail -f /dev/null
working_dir: /root/json-schema-entity
volumes:
- ./docker_fish_history:/root/.config/fish/fish_history
- .:/root/json-schema-entity
environment:
- NODE_ENV=test
- POSTGRES_HOST=postgres
- POSTGRES_PASSWORD=postgres
- MSSQL_HOST=mssql
- MSSQL_PASSWORD=Passw0rd
restart: always
mssql:
image: mcr.microsoft.com/mssql/server:2022-CU14-ubuntu-20.04
container_name: json-schema-entity-mssql-1
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Passw0rd
restart: always
postgres:
image: andrglo/postgres:15
container_name: json-schema-entity-postgres-1
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
restart: always