mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-28 21:28:20 +00:00
26 lines
729 B
YAML
26 lines
729 B
YAML
# Note: This file is only used for Atlantis local development
|
|
version: "3.8"
|
|
services:
|
|
ngrok:
|
|
image: wernight/ngrok:latest
|
|
ports:
|
|
- 4040:4040
|
|
environment:
|
|
# https://dashboard.ngrok.com/get-started/your-authtoken
|
|
NGROK_AUTH: REPLACE-WITH-YOUR-TOKEN
|
|
NGROK_PROTOCOL: http
|
|
NGROK_PORT: atlantis:4141
|
|
depends_on:
|
|
- atlantis
|
|
atlantis:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.dev
|
|
ports:
|
|
- 4141:4141
|
|
volumes:
|
|
- ~/.ssh:/.ssh
|
|
- ./:/atlantis/src
|
|
# Contains the flags that atlantis uses in env var form
|
|
env_file:
|
|
- ./atlantis.env |