2021-04-18 01:56:23 +02:00
|
|
|
services:
|
2023-05-30 21:51:27 +02:00
|
|
|
theoludwig:
|
2024-07-30 23:59:06 +02:00
|
|
|
container_name: "theoludwig"
|
2023-10-23 23:11:59 +02:00
|
|
|
image: "theoludwig"
|
|
|
|
restart: "unless-stopped"
|
2021-04-18 01:56:23 +02:00
|
|
|
build:
|
2023-10-23 23:11:59 +02:00
|
|
|
context: "./"
|
2024-07-30 23:59:06 +02:00
|
|
|
dockerfile: "./apps/website/Dockerfile"
|
2023-12-28 06:21:24 +01:00
|
|
|
ports:
|
2024-07-30 23:59:06 +02:00
|
|
|
- "${WEBSITE_PORT-3000}:${WEBSITE_PORT-3000}"
|
2021-04-18 01:56:23 +02:00
|
|
|
environment:
|
2024-07-30 23:59:06 +02:00
|
|
|
PORT: ${WEBSITE_PORT-3000}
|
|
|
|
env_file: "./apps/website/.env"
|