forked from SOL-Strategies/solana-validator-failover
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (34 loc) · 853 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (34 loc) · 853 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
34
services:
dev:
image: ${APP_NAME}:local
build:
context: .
args:
APP_NAME: ${APP_NAME}
APP_VERSION: ${APP_VERSION}
BUILD_OS_ARCH_LIST: ${BUILD_OS_ARCH_LIST}
command: hot-reload
volumes:
- ./:/usr/local/go/src/github.com/sol-strategies/${APP_NAME}
build:
image: ${APP_NAME}:local
build:
context: .
args:
APP_NAME: ${APP_NAME}
APP_VERSION: ${APP_VERSION}
BUILD_OS_ARCH_LIST: ${BUILD_OS_ARCH_LIST}
CI: ${CI}
command: build
volumes:
- ./bin:/usr/local/go/src/github.com/sol-strategies/${APP_NAME}/bin
test:
image: ${APP_NAME}:local
build:
context: .
args:
APP_NAME: ${APP_NAME}
APP_VERSION: ${APP_VERSION}
BUILD_OS_ARCH_LIST: ${BUILD_OS_ARCH_LIST}
CI: ${CI}
command: test