mirror of
https://github.com/theoludwig/theoludwig.git
synced 2026-08-25 09:21:33 +02:00
21 lines
491 B
YAML
21 lines
491 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"
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10M"
|
|
max-file: "3"
|