17 lines
296 B
YAML
17 lines
296 B
YAML
|
version: '3.2'
|
||
|
volumes:
|
||
|
v-core-data:
|
||
|
services:
|
||
|
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
|