22 lines
412 B
YAML
22 lines
412 B
YAML
|
version: '3.2'
|
||
|
volumes:
|
||
|
v-core-data:
|
||
|
services:
|
||
|
drogon-arm:
|
||
|
image: drogonframework/drogon-arm
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile.drogon
|
||
|
core:
|
||
|
image: registry.gitlab.com/emgauwa/core
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
restart: always
|
||
|
ports:
|
||
|
- "80:5000"
|
||
|
volumes:
|
||
|
- type: volume
|
||
|
source: v-core-data
|
||
|
target: /srv/core
|