-
Notifications
You must be signed in to change notification settings - Fork 6
/
docker-compose.yml
41 lines (41 loc) · 1.09 KB
/
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
35
36
37
38
39
40
41
# Note: This file is only used for Atlantis local development
version: "3.8"
services:
ngrok:
image: ngrok/ngrok:latest
command: "http atlantis-gateway:4143"
ports:
- 4040:4040
depends_on:
- atlantis-gateway
atlantis-gateway:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- 4143:4143
volumes:
- ~/.ssh:/.ssh
- ./:/atlantis/src
- /tmp:/tmp
# Contains the flags that atlantis uses in env var form
env_file:
- ~/.atlantis-gateway.env
atlantis-temporalworker:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- 4142:4142
volumes:
- ~/.ssh:/.ssh
- ./:/atlantis/src
- /tmp:/tmp
# Contains the flags that atlantis uses in env var form
env_file:
- ~/.atlantis-temporalworker.env
temporalite:
build: https://github.com/temporalio/temporalite.git#main
ports:
- 7233:7233
- 8233:8233