15 lines
340 B
YAML
15 lines
340 B
YAML
services:
|
|
beetroot:
|
|
build: .
|
|
image: registry.internal.uia.no/ikt210-g-25h-skyinfrastruktur/labgroup4/exercise03
|
|
container_name: beetroot
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- type: bind
|
|
source: ./secret
|
|
target: /dev/shm/.secret
|
|
read_only: true
|
|
env_file:
|
|
- path: env_variables.env
|