-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
31 lines (28 loc) · 754 Bytes
/
Copy pathdocker-compose.yaml
File metadata and controls
31 lines (28 loc) · 754 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
#
# Docker-compose file for running timeloop/accelergy
#
# Notes:
# The READMEs are put in ./workspace
# The workspace will be owned by $USER_UID:$USER_GID
#
# Run as follows:
#
# 1) Put this file in an otherwise empty directory
# 2) Change USER_UID and USER_GID to the desired owner of your files (echo $UID )
# 3) Cd to the directory containing this file
# 4) Run the following command:
#
# % docker-compose run infrastructure
#
version: '3'
services:
infrastructure:
hostname: accelergy-timeloop
image: timeloopaccelergy/accelergy-timeloop-infrastructure:latest
volumes:
- ./workspace:/home/workspace
environment:
- USER_UID=1000
- USER_GID=1000
stdin_open: true
tty: true