mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-05-07 19:55:34 +02:00
16 lines
391 B
YAML
16 lines
391 B
YAML
services:
|
|
theoludwig:
|
|
container_name: "theoludwig"
|
|
image: "theoludwig"
|
|
restart: "unless-stopped"
|
|
build:
|
|
context: "./"
|
|
dockerfile: "./apps/website/Dockerfile"
|
|
args:
|
|
VERSION: ${VERSION-0.0.0-develop}
|
|
ports:
|
|
- "${WEBSITE_PORT-3000}:${WEBSITE_PORT-3000}"
|
|
environment:
|
|
PORT: ${WEBSITE_PORT-3000}
|
|
env_file: "./apps/website/.env"
|