mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-01-22 23:17:52 +01:00
15 lines
373 B
Plaintext
15 lines
373 B
Plaintext
|
services:
|
||
|
landingpage:
|
||
|
build:
|
||
|
context: .
|
||
|
dockerfile: Dockerfile
|
||
|
image: application-landingpage
|
||
|
container_name: landingpage
|
||
|
ports:
|
||
|
- 127.0.0.1:{{http_port}}:5000
|
||
|
volumes:
|
||
|
- ./app:/app
|
||
|
restart: unless-stopped
|
||
|
{% include 'templates/docker/container/networks.yml.j2' %}
|
||
|
|
||
|
{% include 'templates/docker/compose/networks.yml.j2' %}
|