-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
29 lines (26 loc) · 946 Bytes
/
docker-compose.yml
File metadata and controls
29 lines (26 loc) · 946 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
# this is the docker compose version
version: '3.0'
# file version 2024-05-29-1000
services:
mbatchsa_service:
# use existing default network
network_mode: bridge
# restart this container if it crashes
restart: always
build:
# build from directory in context and Dockerfile
context: .
dockerfile: Dockerfile
container_name: mbatchsa_cont_extr
# update :latest to desired version
image: mdabcb/mbatchsa_image:HUB_2024-05-29-1000
volumes:
# outside access for data files outside:inside
- /MBatchSA/mbatch:/BEA/MBATCH
- /MBatchSA/website:/BEA/WEBSITE
# read-only file to set time to same in image as on server
- /etc/localtime:/etc/localtime:ro
# ports:
# # (outside)host port:container port(inside) for RStudio
# - "8080:8787"
tty: true