-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
33 lines (30 loc) · 860 Bytes
/
docker-compose.yml
File metadata and controls
33 lines (30 loc) · 860 Bytes
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
services:
dms:
image: andrglo/everest:latest
hostname: json-schema-table
container_name: json-schema-table-dms-1
command: tail -f /dev/null
working_dir: /root/json-schema-table
volumes:
- ./docker_fish_history:/root/.config/fish/fish_history
- .:/root/json-schema-table
environment:
- NODE_ENV=test
- MSSQL_PASSWORD=Passw0rd
- MSSQL_HOST=mssql
- POSTGRES_HOST=postgres
restart: always
mssql:
image: mcr.microsoft.com/mssql/server:2022-CU14-ubuntu-20.04
container_name: json-schema-table-mssql-1
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=Passw0rd
restart: always
postgres:
image: andrglo/postgres:15
container_name: json-schema-table-postges-1
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
restart: always